commit a06777c1797439f43e6b8a1026a53c5e6ac9298e parent f3c2a8fb99e5218cdd11945d1f6e7388cc91d266 Author: lumidify <nobody@lumidify.org> Date: Fri, 20 Jul 2018 20:49:36 +0200 Remove several useless files Diffstat:
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>آتِشِین</string><comment></comment></test> - <test label="word 2" rtl="True"><string>آرامگاہوں</string></test> - <test label="word 3" rtl="True"><string>سبّکی</string></test> - <test label="word 4" rtl="True"><string>سےصُحبت</string></test> - <test label="word 5" rtl="True"><string>شخصِیماہ</string></test> - <test label="word 6" rtl="True"><string>طیتھ</string></test> - <test label="word 7" rtl="True"><string>عوفل</string></test> - <test label="word 8" rtl="True"><string>عَمالیق</string></test> - <test label="word 9" rtl="True"><string>عِمّیہُود</string></test> - <test label="word 10" rtl="True"><string>واسطہ</string></test> - <test label="word 11" rtl="True"><string>پَھیلائی</string></test> - <test label="word 12" rtl="True"><string>پَیداکر</string></test> - <test label="word 13" rtl="True"><string>یہُوسفط</string></test> - <test label="word 14" rtl="True"><string>اچھاّلگتا</string></test> - <test label="word 15" rtl="True"><string>بغَیرکلام</string></test> - <test label="word 16" rtl="True"><string>سمدھیانہ</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>ٺا</em></string></test> - <test rtl="True"><string>ل<em>ٺا</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>ݯا</em></string></test> - <test rtl="True"><string>ل<em>ݯا</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>سا</em></string></test> - <test rtl="True"><string>ل<em>سا</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>ۻا</em></string></test> - <test rtl="True"><string>ل<em>ۻا</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>طا</em></string></test> - <test rtl="True"><string>ل<em>طا</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>غا</em></string></test> - <test rtl="True"><string>ل<em>غا</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>فا</em></string></test> - <test rtl="True"><string>ل<em>فا</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>لا</em></string></test> - <test rtl="True"><string>ل<em>لا</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>ما</em></string></test> - <test rtl="True"><string>ل<em>ما</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>ڱا</em></string></test> - <test rtl="True"><string>ل<em>ڱا</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>ھا</em></string></test> - <test rtl="True"><string>ل<em>ھا</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>ها</em></string></test> - <test rtl="True"><string>ل<em>ها</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>بت</em></string></test> - <test rtl="True"><string>ل<em>بت</em></string></test> - <test rtl="True"><string><em>بت</em>ف</string></test> - <test rtl="True"><string>ل<em>بت</em>ف</string></test> - </testgroup> - <testgroup label="hah + peh"> - <test rtl="True"><string><em>حپ</em></string></test> - <test rtl="True"><string>ل<em>حپ</em></string></test> - <test rtl="True"><string><em>حپ</em>ف</string></test> - <test rtl="True"><string>ل<em>حپ</em>ف</string></test> - </testgroup> - <testgroup label="sheen + peh"> - <test rtl="True"><string><em>شپ</em></string></test> - <test rtl="True"><string>ل<em>شپ</em></string></test> - <test rtl="True"><string><em>شپ</em>ف</string></test> - <test rtl="True"><string>ل<em>شپ</em>ف</string></test> - </testgroup> - <testgroup label="dad + theh"> - <test rtl="True"><string><em>ضث</em></string></test> - <test rtl="True"><string>ل<em>ضث</em></string></test> - <test rtl="True"><string><em>ضث</em>ف</string></test> - <test rtl="True"><string>ل<em>ضث</em>ف</string></test> - </testgroup> - <testgroup label="tah + beh"> - <test rtl="True"><string><em>طب</em></string></test> - <test rtl="True"><string>ل<em>طب</em></string></test> - <test rtl="True"><string><em>طب</em>ف</string></test> - <test rtl="True"><string>ل<em>طب</em>ف</string></test> - </testgroup> - <testgroup label="ghain + beh"> - <test rtl="True"><string><em>غب</em></string></test> - <test rtl="True"><string>ل<em>غب</em></string></test> - <test rtl="True"><string><em>غب</em>ف</string></test> - <test rtl="True"><string>ل<em>غب</em>ف</string></test> - </testgroup> - <testgroup label="feh + beh"> - <test rtl="True"><string><em>فب</em></string></test> - <test rtl="True"><string>ل<em>فب</em></string></test> - <test rtl="True"><string><em>فب</em>ف</string></test> - <test rtl="True"><string>ل<em>فب</em>ف</string></test> - </testgroup> - <testgroup label="lamSmallV + beh"> - <test rtl="True"><string><em>ڵب</em></string></test> - <test rtl="True"><string>ل<em>ڵب</em></string></test> - <test rtl="True"><string><em>ڵب</em>ف</string></test> - <test rtl="True"><string>ل<em>ڵب</em>ف</string></test> - </testgroup> - <testgroup label="meem + beh"> - <test rtl="True"><string><em>مب</em></string></test> - <test rtl="True"><string>ل<em>مب</em></string></test> - <test rtl="True"><string><em>مب</em>ف</string></test> - <test rtl="True"><string>ل<em>مب</em>ف</string></test> - </testgroup> - <testgroup label="gueh + beh"> - <test rtl="True"><string><em>ڳب</em></string></test> - <test rtl="True"><string>ل<em>ڳب</em></string></test> - <test rtl="True"><string><em>ڳب</em>ف</string></test> - <test rtl="True"><string>ل<em>ڳب</em>ف</string></test> - </testgroup> - <testgroup label="hehDo + beh"> - <test rtl="True"><string><em>ھب</em></string></test> - <test rtl="True"><string>ل<em>ھب</em></string></test> - <test rtl="True"><string><em>ھب</em>ف</string></test> - <test rtl="True"><string>ل<em>ھب</em>ف</string></test> - </testgroup> - <testgroup label="arabicHeh + beh"> - <test rtl="True"><string><em>هب</em></string></test> - <test rtl="True"><string>ل<em>هب</em></string></test> - <test rtl="True"><string><em>هب</em>ف</string></test> - <test rtl="True"><string>ل<em>هب</em>ف</string></test> - </testgroup> - </testgroup> - <testgroup label="Jeem form sequences"> - <testgroup label="theh + jeem"> - <test rtl="True"><string><em>ثج</em></string></test> - <test rtl="True"><string>ل<em>ثج</em></string></test> - <test rtl="True"><string><em>ثج</em>ف</string></test> - <test rtl="True"><string>ل<em>ثج</em>ف</string></test> - </testgroup> - <testgroup label="khah + tcheh"> - <test rtl="True"><string><em>خچ</em></string></test> - <test rtl="True"><string>ل<em>خچ</em></string></test> - <test rtl="True"><string><em>خچ</em>ف</string></test> - <test rtl="True"><string>ل<em>خچ</em>ف</string></test> - </testgroup> - <testgroup label="seenDotDot + tcheh"> - <test rtl="True"><string><em>ښچ</em></string></test> - <test rtl="True"><string>ل<em>ښچ</em></string></test> - <test rtl="True"><string><em>ښچ</em>ف</string></test> - <test rtl="True"><string>ل<em>ښچ</em>ف</string></test> - </testgroup> - <testgroup label="dadDotBelow + dyeh"> - <test rtl="True"><string><em>ۻڄ</em></string></test> - <test rtl="True"><string>ل<em>ۻڄ</em></string></test> - <test rtl="True"><string><em>ۻڄ</em>ف</string></test> - <test rtl="True"><string>ل<em>ۻڄ</em>ف</string></test> - </testgroup> - <testgroup label="zah + tcheheh"> - <test rtl="True"><string><em>ظڇ</em></string></test> - <test rtl="True"><string>ل<em>ظڇ</em></string></test> - <test rtl="True"><string><em>ظڇ</em>ف</string></test> - <test rtl="True"><string>ل<em>ظڇ</em>ف</string></test> - </testgroup> - <testgroup label="ain + hahHamza"> - <test rtl="True"><string><em>عځ</em></string></test> - <test rtl="True"><string>ل<em>عځ</em></string></test> - <test rtl="True"><string><em>عځ</em>ف</string></test> - <test rtl="True"><string>ل<em>عځ</em>ف</string></test> - </testgroup> - <testgroup label="feh3dots + hah3dots"> - <test rtl="True"><string><em>ڥڅ</em></string></test> - <test rtl="True"><string>ل<em>ڥڅ</em></string></test> - <test rtl="True"><string><em>ڥڅ</em>ف</string></test> - <test rtl="True"><string>ل<em>ڥڅ</em>ف</string></test> - </testgroup> - <testgroup label="lam + hahTah"> - <test rtl="True"><string><em>لݮ</em></string></test> - <test rtl="True"><string>ل<em>لݮ</em></string></test> - <test rtl="True"><string><em>لݮ</em>ف</string></test> - <test rtl="True"><string>ل<em>لݮ</em>ف</string></test> - </testgroup> - <testgroup label="meem + hahTah2smd"> - <test rtl="True"><string><em>مݯ</em></string></test> - <test rtl="True"><string>ل<em>مݯ</em></string></test> - <test rtl="True"><string><em>مݯ</em>ف</string></test> - <test rtl="True"><string>ل<em>مݯ</em>ف</string></test> - </testgroup> - <testgroup label="ngoeh + jeem"> - <test rtl="True"><string><em>ڱج</em></string></test> - <test rtl="True"><string>ل<em>ڱج</em></string></test> - <test rtl="True"><string><em>ڱج</em>ف</string></test> - <test rtl="True"><string>ل<em>ڱج</em>ف</string></test> - </testgroup> - <testgroup label="hehDo + hah"> - <test rtl="True"><string><em>ھح</em></string></test> - <test rtl="True"><string>ل<em>ھح</em></string></test> - <test rtl="True"><string><em>ھح</em>ف</string></test> - <test rtl="True"><string>ل<em>ھح</em>ف</string></test> - </testgroup> - <testgroup label="hehHamza + khah"> - <test rtl="True"><string><em>ۂخ</em></string></test> - <test rtl="True"><string>ل<em>ۂخ</em></string></test> - <test rtl="True"><string><em>ۂخ</em>ف</string></test> - <test rtl="True"><string>ل<em>ۂخ</em>ف</string></test> - </testgroup> - </testgroup> - <testgroup label="Dal form sequences"> - <testgroup label="beeh + dal"> - <test rtl="True"><string><em>ٻد</em></string></test> - <test rtl="True"><string>ل<em>ٻد</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>جڈ</em></string></test> - <test rtl="True"><string>ل<em>جڈ</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>شݙ</em></string></test> - <test rtl="True"><string>ل<em>شݙ</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>صڐ</em></string></test> - <test rtl="True"><string>ل<em>صڐ</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>ظذ</em></string></test> - <test rtl="True"><string>ل<em>ظذ</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>عڋ</em></string></test> - <test rtl="True"><string>ل<em>عڋ</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>ڥډ</em></string></test> - <test rtl="True"><string>ل<em>ڥډ</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>ݪد</em></string></test> - <test rtl="True"><string>ل<em>ݪد</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>مذ</em></string></test> - <test rtl="True"><string>ل<em>مذ</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>ګڋ</em></string></test> - <test rtl="True"><string>ل<em>ګڋ</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>ھݙ</em></string></test> - <test rtl="True"><string>ل<em>ھݙ</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>ۂڐ</em></string></test> - <test rtl="True"><string>ل<em>ۂڐ</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>ټر</em></string></test> - <test rtl="True"><string>ل<em>ټر</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>حڑ</em></string></test> - <test rtl="True"><string>ل<em>حڑ</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>ښڔ</em></string></test> - <test rtl="True"><string>ل<em>ښڔ</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>ضڗ</em></string></test> - <test rtl="True"><string>ل<em>ضڗ</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>طݬ</em></string></test> - <test rtl="True"><string>ل<em>طݬ</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>غݱ</em></string></test> - <test rtl="True"><string>ل<em>غݱ</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>فر</em></string></test> - <test rtl="True"><string>ل<em>فر</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>ڵڑ</em></string></test> - <test rtl="True"><string>ل<em>ڵڑ</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>مڔ</em></string></test> - <test rtl="True"><string>ل<em>مڔ</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>کڗ</em></string></test> - <test rtl="True"><string>ل<em>کڗ</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>ھݬ</em></string></test> - <test rtl="True"><string>ل<em>ھݬ</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>ہݱ</em></string></test> - <test rtl="True"><string>ل<em>ہݱ</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>ٹس</em></string></test> - <test rtl="True"><string>ل<em>ٹس</em></string></test> - <test rtl="True"><string><em>ٹس</em>ف</string></test> - <test rtl="True"><string>ل<em>ٹس</em>ف</string></test> - </testgroup> - <testgroup label="dyeh + seen2dotsV"> - <test rtl="True"><string><em>ڄݭ</em></string></test> - <test rtl="True"><string>ل<em>ڄݭ</em></string></test> - <test rtl="True"><string><em>ڄݭ</em>ف</string></test> - <test rtl="True"><string>ل<em>ڄݭ</em>ف</string></test> - </testgroup> - <testgroup label="seen4dots + seen2dotsV"> - <test rtl="True"><string><em>ݜݭ</em></string></test> - <test rtl="True"><string>ل<em>ݜݭ</em></string></test> - <test rtl="True"><string><em>ݜݭ</em>ف</string></test> - <test rtl="True"><string>ل<em>ݜݭ</em>ف</string></test> - </testgroup> - <testgroup label="sad + seen"> - <test rtl="True"><string><em>صس</em></string></test> - <test rtl="True"><string>ل<em>صس</em></string></test> - <test rtl="True"><string><em>صس</em>ف</string></test> - <test rtl="True"><string>ل<em>صس</em>ف</string></test> - </testgroup> - <testgroup label="tah + seen2dotsV"> - <test rtl="True"><string><em>طݭ</em></string></test> - <test rtl="True"><string>ل<em>طݭ</em></string></test> - <test rtl="True"><string><em>طݭ</em>ف</string></test> - <test rtl="True"><string>ل<em>طݭ</em>ف</string></test> - </testgroup> - <testgroup label="ghain + sheen"> - <test rtl="True"><string><em>غش</em></string></test> - <test rtl="True"><string>ل<em>غش</em></string></test> - <test rtl="True"><string><em>غش</em>ف</string></test> - <test rtl="True"><string>ل<em>غش</em>ف</string></test> - </testgroup> - <testgroup label="feh + seenTah2smd"> - <test rtl="True"><string><em>فݰ</em></string></test> - <test rtl="True"><string>ل<em>فݰ</em></string></test> - <test rtl="True"><string><em>فݰ</em>ف</string></test> - <test rtl="True"><string>ل<em>فݰ</em>ف</string></test> - </testgroup> - <testgroup label="lamBar + seenDotDot"> - <test rtl="True"><string><em>ݪښ</em></string></test> - <test rtl="True"><string>ل<em>ݪښ</em></string></test> - <test rtl="True"><string><em>ݪښ</em>ف</string></test> - <test rtl="True"><string>ل<em>ݪښ</em>ف</string></test> - </testgroup> - <testgroup label="meem + seen3dots3dots"> - <test rtl="True"><string><em>مڜ</em></string></test> - <test rtl="True"><string>ل<em>مڜ</em></string></test> - <test rtl="True"><string><em>مڜ</em>ف</string></test> - <test rtl="True"><string>ل<em>مڜ</em>ف</string></test> - </testgroup> - <testgroup label="kafRing + seen4dots"> - <test rtl="True"><string><em>ګݜ</em></string></test> - <test rtl="True"><string>ل<em>ګݜ</em></string></test> - <test rtl="True"><string><em>ګݜ</em>ف</string></test> - <test rtl="True"><string>ل<em>ګݜ</em>ف</string></test> - </testgroup> - <testgroup label="hehDo + seen"> - <test rtl="True"><string><em>ھس</em></string></test> - <test rtl="True"><string>ل<em>ھس</em></string></test> - <test rtl="True"><string><em>ھس</em>ف</string></test> - <test rtl="True"><string>ل<em>ھس</em>ف</string></test> - </testgroup> - <testgroup label="hehGoal + seen2dotsV"> - <test rtl="True"><string><em>ہݭ</em></string></test> - <test rtl="True"><string>ل<em>ہݭ</em></string></test> - <test rtl="True"><string><em>ہݭ</em>ف</string></test> - <test rtl="True"><string>ل<em>ہݭ</em>ف</string></test> - </testgroup> - </testgroup> - <testgroup label="Sad form sequences"> - <testgroup label="peh + sad"> - <test rtl="True"><string><em>پص</em></string></test> - <test rtl="True"><string>ل<em>پص</em></string></test> - <test rtl="True"><string><em>پص</em>ف</string></test> - <test rtl="True"><string>ل<em>پص</em>ف</string></test> - </testgroup> - <testgroup label="tcheheh + dad"> - <test rtl="True"><string><em>ڇض</em></string></test> - <test rtl="True"><string>ل<em>ڇض</em></string></test> - <test rtl="True"><string><em>ڇض</em>ف</string></test> - <test rtl="True"><string>ل<em>ڇض</em>ف</string></test> - </testgroup> - <testgroup label="seenTah2smd + dadDotBelow"> - <test rtl="True"><string><em>ݰۻ</em></string></test> - <test rtl="True"><string>ل<em>ݰۻ</em></string></test> - <test rtl="True"><string><em>ݰۻ</em>ف</string></test> - <test rtl="True"><string>ل<em>ݰۻ</em>ف</string></test> - </testgroup> - <testgroup label="dad + dadDotBelow"> - <test rtl="True"><string><em>ضۻ</em></string></test> - <test rtl="True"><string>ل<em>ضۻ</em></string></test> - <test rtl="True"><string><em>ضۻ</em>ف</string></test> - <test rtl="True"><string>ل<em>ضۻ</em>ف</string></test> - </testgroup> - <testgroup label="zah + dad"> - <test rtl="True"><string><em>ظض</em></string></test> - <test rtl="True"><string>ل<em>ظض</em></string></test> - <test rtl="True"><string><em>ظض</em>ف</string></test> - <test rtl="True"><string>ل<em>ظض</em>ف</string></test> - </testgroup> - <testgroup label="ain + dadDotBelow"> - <test rtl="True"><string><em>عۻ</em></string></test> - <test rtl="True"><string>ل<em>عۻ</em></string></test> - <test rtl="True"><string><em>عۻ</em>ف</string></test> - <test rtl="True"><string>ل<em>عۻ</em>ف</string></test> - </testgroup> - <testgroup label="feh3dots + sad"> - <test rtl="True"><string><em>ڥص</em></string></test> - <test rtl="True"><string>ل<em>ڥص</em></string></test> - <test rtl="True"><string><em>ڥص</em>ف</string></test> - <test rtl="True"><string>ل<em>ڥص</em>ف</string></test> - </testgroup> - <testgroup label="lamSmallV + dad"> - <test rtl="True"><string><em>ڵض</em></string></test> - <test rtl="True"><string>ل<em>ڵض</em></string></test> - <test rtl="True"><string><em>ڵض</em>ف</string></test> - <test rtl="True"><string>ل<em>ڵض</em>ف</string></test> - </testgroup> - <testgroup label="meem + dadDotBelow"> - <test rtl="True"><string><em>مۻ</em></string></test> - <test rtl="True"><string>ل<em>مۻ</em></string></test> - <test rtl="True"><string><em>مۻ</em>ف</string></test> - <test rtl="True"><string>ل<em>مۻ</em>ف</string></test> - </testgroup> - <testgroup label="kaf + sad"> - <test rtl="True"><string><em>کص</em></string></test> - <test rtl="True"><string>ل<em>کص</em></string></test> - <test rtl="True"><string><em>کص</em>ف</string></test> - <test rtl="True"><string>ل<em>کص</em>ف</string></test> - </testgroup> - <testgroup label="hehDo + dad"> - <test rtl="True"><string><em>ھض</em></string></test> - <test rtl="True"><string>ل<em>ھض</em></string></test> - <test rtl="True"><string><em>ھض</em>ف</string></test> - <test rtl="True"><string>ل<em>ھض</em>ف</string></test> - </testgroup> - <testgroup label="arabicHeh + dadDotBelow"> - <test rtl="True"><string><em>هۻ</em></string></test> - <test rtl="True"><string>ل<em>هۻ</em></string></test> - <test rtl="True"><string><em>هۻ</em>ف</string></test> - <test rtl="True"><string>ل<em>هۻ</em>ف</string></test> - </testgroup> - </testgroup> - <testgroup label="Tah form sequences"> - <testgroup label="tteheh + tah"> - <test rtl="True"><string><em>ٺط</em></string></test> - <test rtl="True"><string>ل<em>ٺط</em></string></test> - <test rtl="True"><string><em>ٺط</em>ف</string></test> - <test rtl="True"><string>ل<em>ٺط</em>ف</string></test> - </testgroup> - <testgroup label="hahHamza + zah"> - <test rtl="True"><string><em>ځظ</em></string></test> - <test rtl="True"><string>ل<em>ځظ</em></string></test> - <test rtl="True"><string><em>ځظ</em>ف</string></test> - <test rtl="True"><string>ل<em>ځظ</em>ف</string></test> - </testgroup> - <testgroup label="seen3dots3dots + tah"> - <test rtl="True"><string><em>ڜط</em></string></test> - <test rtl="True"><string>ل<em>ڜط</em></string></test> - <test rtl="True"><string><em>ڜط</em>ف</string></test> - <test rtl="True"><string>ل<em>ڜط</em>ف</string></test> - </testgroup> - <testgroup label="sad + tah"> - <test rtl="True"><string><em>صط</em></string></test> - <test rtl="True"><string>ل<em>صط</em></string></test> - <test rtl="True"><string><em>صط</em>ف</string></test> - <test rtl="True"><string>ل<em>صط</em>ف</string></test> - </testgroup> - <testgroup label="tah + zah"> - <test rtl="True"><string><em>طظ</em></string></test> - <test rtl="True"><string>ل<em>طظ</em></string></test> - <test rtl="True"><string><em>طظ</em>ف</string></test> - <test rtl="True"><string>ل<em>طظ</em>ف</string></test> - </testgroup> - <testgroup label="ghain + tah"> - <test rtl="True"><string><em>غط</em></string></test> - <test rtl="True"><string>ل<em>غط</em></string></test> - <test rtl="True"><string><em>غط</em>ف</string></test> - <test rtl="True"><string>ل<em>غط</em>ف</string></test> - </testgroup> - <testgroup label="feh + zah"> - <test rtl="True"><string><em>فظ</em></string></test> - <test rtl="True"><string>ل<em>فظ</em></string></test> - <test rtl="True"><string><em>فظ</em>ف</string></test> - <test rtl="True"><string>ل<em>فظ</em>ف</string></test> - </testgroup> - <testgroup label="lam + tah"> - <test rtl="True"><string><em>لط</em></string></test> - <test rtl="True"><string>ل<em>لط</em></string></test> - <test rtl="True"><string><em>لط</em>ف</string></test> - <test rtl="True"><string>ل<em>لط</em>ف</string></test> - </testgroup> - <testgroup label="meem + zah"> - <test rtl="True"><string><em>مظ</em></string></test> - <test rtl="True"><string>ل<em>مظ</em></string></test> - <test rtl="True"><string><em>مظ</em>ف</string></test> - <test rtl="True"><string>ل<em>مظ</em>ف</string></test> - </testgroup> - <testgroup label="gaf + tah"> - <test rtl="True"><string><em>گط</em></string></test> - <test rtl="True"><string>ل<em>گط</em></string></test> - <test rtl="True"><string><em>گط</em>ف</string></test> - <test rtl="True"><string>ل<em>گط</em>ف</string></test> - </testgroup> - <testgroup label="hehDo + zah"> - <test rtl="True"><string><em>ھظ</em></string></test> - <test rtl="True"><string>ل<em>ھظ</em></string></test> - <test rtl="True"><string><em>ھظ</em>ف</string></test> - <test rtl="True"><string>ل<em>ھظ</em>ف</string></test> - </testgroup> - <testgroup label="hehHamza + tah"> - <test rtl="True"><string><em>ۂط</em></string></test> - <test rtl="True"><string>ل<em>ۂط</em></string></test> - <test rtl="True"><string><em>ۂط</em>ف</string></test> - <test rtl="True"><string>ل<em>ۂط</em>ف</string></test> - </testgroup> - </testgroup> - <testgroup label="Ain form sequences"> - <testgroup label="beeh + ain"> - <test rtl="True"><string><em>ٻع</em></string></test> - <test rtl="True"><string>ل<em>ٻع</em></string></test> - <test rtl="True"><string><em>ٻع</em>ف</string></test> - <test rtl="True"><string>ل<em>ٻع</em>ف</string></test> - </testgroup> - <testgroup label="hah3dots + ghain"> - <test rtl="True"><string><em>څغ</em></string></test> - <test rtl="True"><string>ل<em>څغ</em></string></test> - <test rtl="True"><string><em>څغ</em>ف</string></test> - <test rtl="True"><string>ل<em>څغ</em>ف</string></test> - </testgroup> - <testgroup label="seen + ain"> - <test rtl="True"><string><em>سع</em></string></test> - <test rtl="True"><string>ل<em>سع</em></string></test> - <test rtl="True"><string><em>سع</em>ف</string></test> - <test rtl="True"><string>ل<em>سع</em>ف</string></test> - </testgroup> - <testgroup label="dad + ain"> - <test rtl="True"><string><em>ضع</em></string></test> - <test rtl="True"><string>ل<em>ضع</em></string></test> - <test rtl="True"><string><em>ضع</em>ف</string></test> - <test rtl="True"><string>ل<em>ضع</em>ف</string></test> - </testgroup> - <testgroup label="tah + ain"> - <test rtl="True"><string><em>طع</em></string></test> - <test rtl="True"><string>ل<em>طع</em></string></test> - <test rtl="True"><string><em>طع</em>ف</string></test> - <test rtl="True"><string>ل<em>طع</em>ف</string></test> - </testgroup> - <testgroup label="ain + ghain"> - <test rtl="True"><string><em>عغ</em></string></test> - <test rtl="True"><string>ل<em>عغ</em></string></test> - <test rtl="True"><string><em>عغ</em>ف</string></test> - <test rtl="True"><string>ل<em>عغ</em>ف</string></test> - </testgroup> - <testgroup label="feh3dots + ghain"> - <test rtl="True"><string><em>ڥغ</em></string></test> - <test rtl="True"><string>ل<em>ڥغ</em></string></test> - <test rtl="True"><string><em>ڥغ</em>ف</string></test> - <test rtl="True"><string>ل<em>ڥغ</em>ف</string></test> - </testgroup> - <testgroup label="lamBar + ain"> - <test rtl="True"><string><em>ݪع</em></string></test> - <test rtl="True"><string>ل<em>ݪع</em></string></test> - <test rtl="True"><string><em>ݪع</em>ف</string></test> - <test rtl="True"><string>ل<em>ݪع</em>ف</string></test> - </testgroup> - <testgroup label="meem + ghain"> - <test rtl="True"><string><em>مغ</em></string></test> - <test rtl="True"><string>ل<em>مغ</em></string></test> - <test rtl="True"><string><em>مغ</em>ف</string></test> - <test rtl="True"><string>ل<em>مغ</em>ف</string></test> - </testgroup> - <testgroup label="gueh + ain"> - <test rtl="True"><string><em>ڳع</em></string></test> - <test rtl="True"><string>ل<em>ڳع</em></string></test> - <test rtl="True"><string><em>ڳع</em>ف</string></test> - <test rtl="True"><string>ل<em>ڳع</em>ف</string></test> - </testgroup> - <testgroup label="hehDo + ghain"> - <test rtl="True"><string><em>ھغ</em></string></test> - <test rtl="True"><string>ل<em>ھغ</em></string></test> - <test rtl="True"><string><em>ھغ</em>ف</string></test> - <test rtl="True"><string>ل<em>ھغ</em>ف</string></test> - </testgroup> - <testgroup label="hehGoal + ain"> - <test rtl="True"><string><em>ہع</em></string></test> - <test rtl="True"><string>ل<em>ہع</em></string></test> - <test rtl="True"><string><em>ہع</em>ف</string></test> - <test rtl="True"><string>ل<em>ہع</em>ف</string></test> - </testgroup> - </testgroup> - <testgroup label="Feh form sequences"> - <testgroup label="tehRing + feh"> - <test rtl="True"><string><em>ټف</em></string></test> - <test rtl="True"><string>ل<em>ټف</em></string></test> - <test rtl="True"><string><em>ټف</em>ف</string></test> - <test rtl="True"><string>ل<em>ټف</em>ف</string></test> - </testgroup> - <testgroup label="hahTah + feh3dots"> - <test rtl="True"><string><em>ݮڥ</em></string></test> - <test rtl="True"><string>ل<em>ݮڥ</em></string></test> - <test rtl="True"><string><em>ݮڥ</em>ف</string></test> - <test rtl="True"><string>ل<em>ݮڥ</em>ف</string></test> - </testgroup> - <testgroup label="sheen + feh"> - <test rtl="True"><string><em>شف</em></string></test> - <test rtl="True"><string>ل<em>شف</em></string></test> - <test rtl="True"><string><em>شف</em>ف</string></test> - <test rtl="True"><string>ل<em>شف</em>ف</string></test> - </testgroup> - <testgroup label="dadDotBelow + feh"> - <test rtl="True"><string><em>ۻف</em></string></test> - <test rtl="True"><string>ل<em>ۻف</em></string></test> - <test rtl="True"><string><em>ۻف</em>ف</string></test> - <test rtl="True"><string>ل<em>ۻف</em>ف</string></test> - </testgroup> - <testgroup label="zah + feh"> - <test rtl="True"><string><em>ظف</em></string></test> - <test rtl="True"><string>ل<em>ظف</em></string></test> - <test rtl="True"><string><em>ظف</em>ف</string></test> - <test rtl="True"><string>ل<em>ظف</em>ف</string></test> - </testgroup> - <testgroup label="ain + feh3dots"> - <test rtl="True"><string><em>عڥ</em></string></test> - <test rtl="True"><string>ل<em>عڥ</em></string></test> - <test rtl="True"><string><em>عڥ</em>ف</string></test> - <test rtl="True"><string>ل<em>عڥ</em>ف</string></test> - </testgroup> - <testgroup label="feh + feh3dots"> - <test rtl="True"><string><em>فڥ</em></string></test> - <test rtl="True"><string>ل<em>فڥ</em></string></test> - <test rtl="True"><string><em>فڥ</em>ف</string></test> - <test rtl="True"><string>ل<em>فڥ</em>ف</string></test> - </testgroup> - <testgroup label="lamSmallV + feh"> - <test rtl="True"><string><em>ڵف</em></string></test> - <test rtl="True"><string>ل<em>ڵف</em></string></test> - <test rtl="True"><string><em>ڵف</em>ف</string></test> - <test rtl="True"><string>ل<em>ڵف</em>ف</string></test> - </testgroup> - <testgroup label="meem + feh3dots"> - <test rtl="True"><string><em>مڥ</em></string></test> - <test rtl="True"><string>ل<em>مڥ</em></string></test> - <test rtl="True"><string><em>مڥ</em>ف</string></test> - <test rtl="True"><string>ل<em>مڥ</em>ف</string></test> - </testgroup> - <testgroup label="ngoeh + feh"> - <test rtl="True"><string><em>ڱف</em></string></test> - <test rtl="True"><string>ل<em>ڱف</em></string></test> - <test rtl="True"><string><em>ڱف</em>ف</string></test> - <test rtl="True"><string>ل<em>ڱف</em>ف</string></test> - </testgroup> - <testgroup label="hehDo + feh3dots"> - <test rtl="True"><string><em>ھڥ</em></string></test> - <test rtl="True"><string>ل<em>ھڥ</em></string></test> - <test rtl="True"><string><em>ھڥ</em>ف</string></test> - <test rtl="True"><string>ل<em>ھڥ</em>ف</string></test> - </testgroup> - <testgroup label="arabicHeh + feh"> - <test rtl="True"><string><em>هف</em></string></test> - <test rtl="True"><string>ل<em>هف</em></string></test> - <test rtl="True"><string><em>هف</em>ف</string></test> - <test rtl="True"><string>ل<em>هف</em>ف</string></test> - </testgroup> - </testgroup> - <testgroup label="Qaf form sequences"> - <testgroup label="teh3down + qaf"> - <test rtl="True"><string><em>ٽق</em></string></test> - <test rtl="True"><string>ل<em>ٽق</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>خق</em></string></test> - <test rtl="True"><string>ل<em>خق</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>ݜق</em></string></test> - <test rtl="True"><string>ل<em>ݜق</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>ۻق</em></string></test> - <test rtl="True"><string>ل<em>ۻق</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>ظق</em></string></test> - <test rtl="True"><string>ل<em>ظق</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>عق</em></string></test> - <test rtl="True"><string>ل<em>عق</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>ڥق</em></string></test> - <test rtl="True"><string>ل<em>ڥق</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>لق</em></string></test> - <test rtl="True"><string>ل<em>لق</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>مق</em></string></test> - <test rtl="True"><string>ل<em>مق</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>گق</em></string></test> - <test rtl="True"><string>ل<em>گق</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>ھق</em></string></test> - <test rtl="True"><string>ل<em>ھق</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>هق</em></string></test> - <test rtl="True"><string>ل<em>هق</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>ٽل</em></string></test> - <test rtl="True"><string>ل<em>ٽل</em></string></test> - <test rtl="True"><string><em>ٽل</em>ف</string></test> - <test rtl="True"><string>ل<em>ٽل</em>ف</string></test> - </testgroup> - <testgroup label="hahTah2smd + lamSmallV"> - <test rtl="True"><string><em>ݯڵ</em></string></test> - <test rtl="True"><string>ل<em>ݯڵ</em></string></test> - <test rtl="True"><string><em>ݯڵ</em>ف</string></test> - <test rtl="True"><string>ل<em>ݯڵ</em>ف</string></test> - </testgroup> - <testgroup label="seenDotDot + lamBar"> - <test rtl="True"><string><em>ښݪ</em></string></test> - <test rtl="True"><string>ل<em>ښݪ</em></string></test> - <test rtl="True"><string><em>ښݪ</em>ف</string></test> - <test rtl="True"><string>ل<em>ښݪ</em>ف</string></test> - </testgroup> - <testgroup label="sad + lam"> - <test rtl="True"><string><em>صل</em></string></test> - <test rtl="True"><string>ل<em>صل</em></string></test> - <test rtl="True"><string><em>صل</em>ف</string></test> - <test rtl="True"><string>ل<em>صل</em>ف</string></test> - </testgroup> - <testgroup label="tah + lamSmallV"> - <test rtl="True"><string><em>طڵ</em></string></test> - <test rtl="True"><string>ل<em>طڵ</em></string></test> - <test rtl="True"><string><em>طڵ</em>ف</string></test> - <test rtl="True"><string>ل<em>طڵ</em>ف</string></test> - </testgroup> - <testgroup label="ghain + lamBar"> - <test rtl="True"><string><em>غݪ</em></string></test> - <test rtl="True"><string>ل<em>غݪ</em></string></test> - <test rtl="True"><string><em>غݪ</em>ف</string></test> - <test rtl="True"><string>ل<em>غݪ</em>ف</string></test> - </testgroup> - <testgroup label="feh + lam"> - <test rtl="True"><string><em>فل</em></string></test> - <test rtl="True"><string>ل<em>فل</em></string></test> - <test rtl="True"><string><em>فل</em>ف</string></test> - <test rtl="True"><string>ل<em>فل</em>ف</string></test> - </testgroup> - <testgroup label="lam + lamBar"> - <test rtl="True"><string><em>لݪ</em></string></test> - <test rtl="True"><string>ل<em>لݪ</em></string></test> - <test rtl="True"><string><em>لݪ</em>ف</string></test> - <test rtl="True"><string>ل<em>لݪ</em>ف</string></test> - </testgroup> - <testgroup label="meem + lam"> - <test rtl="True"><string><em>مل</em></string></test> - <test rtl="True"><string>ل<em>مل</em></string></test> - <test rtl="True"><string><em>مل</em>ف</string></test> - <test rtl="True"><string>ل<em>مل</em>ف</string></test> - </testgroup> - <testgroup label="kafRing + lamSmallV"> - <test rtl="True"><string><em>ګڵ</em></string></test> - <test rtl="True"><string>ل<em>ګڵ</em></string></test> - <test rtl="True"><string><em>ګڵ</em>ف</string></test> - <test rtl="True"><string>ل<em>ګڵ</em>ف</string></test> - </testgroup> - <testgroup label="hehDo + lam"> - <test rtl="True"><string><em>ھل</em></string></test> - <test rtl="True"><string>ل<em>ھل</em></string></test> - <test rtl="True"><string><em>ھل</em>ف</string></test> - <test rtl="True"><string>ل<em>ھل</em>ف</string></test> - </testgroup> - <testgroup label="hehHamza + lamSmallV"> - <test rtl="True"><string><em>ۂڵ</em></string></test> - <test rtl="True"><string>ل<em>ۂڵ</em></string></test> - <test rtl="True"><string><em>ۂڵ</em>ف</string></test> - <test rtl="True"><string>ل<em>ۂڵ</em>ف</string></test> - </testgroup> - </testgroup> - <testgroup label="Meem form sequences"> - <testgroup label="beh + meem"> - <test rtl="True"><string><em>بم</em></string></test> - <test rtl="True"><string>ل<em>بم</em></string></test> - <test rtl="True"><string><em>بم</em>ف</string></test> - <test rtl="True"><string>ل<em>بم</em>ف</string></test> - </testgroup> - <testgroup label="jeem + meem"> - <test rtl="True"><string><em>جم</em></string></test> - <test rtl="True"><string>ل<em>جم</em></string></test> - <test rtl="True"><string><em>جم</em>ف</string></test> - <test rtl="True"><string>ل<em>جم</em>ف</string></test> - </testgroup> - <testgroup label="seen4dots + meem"> - <test rtl="True"><string><em>ݜم</em></string></test> - <test rtl="True"><string>ل<em>ݜم</em></string></test> - <test rtl="True"><string><em>ݜم</em>ف</string></test> - <test rtl="True"><string>ل<em>ݜم</em>ف</string></test> - </testgroup> - <testgroup label="dad + meem"> - <test rtl="True"><string><em>ضم</em></string></test> - <test rtl="True"><string>ل<em>ضم</em></string></test> - <test rtl="True"><string><em>ضم</em>ف</string></test> - <test rtl="True"><string>ل<em>ضم</em>ف</string></test> - </testgroup> - <testgroup label="zah + meem"> - <test rtl="True"><string><em>ظم</em></string></test> - <test rtl="True"><string>ل<em>ظم</em></string></test> - <test rtl="True"><string><em>ظم</em>ف</string></test> - <test rtl="True"><string>ل<em>ظم</em>ف</string></test> - </testgroup> - <testgroup label="ain + meem"> - <test rtl="True"><string><em>عم</em></string></test> - <test rtl="True"><string>ل<em>عم</em></string></test> - <test rtl="True"><string><em>عم</em>ف</string></test> - <test rtl="True"><string>ل<em>عم</em>ف</string></test> - </testgroup> - <testgroup label="feh3dots + meem"> - <test rtl="True"><string><em>ڥم</em></string></test> - <test rtl="True"><string>ل<em>ڥم</em></string></test> - <test rtl="True"><string><em>ڥم</em>ف</string></test> - <test rtl="True"><string>ل<em>ڥم</em>ف</string></test> - </testgroup> - <testgroup label="lamSmallV + meem"> - <test rtl="True"><string><em>ڵم</em></string></test> - <test rtl="True"><string>ل<em>ڵم</em></string></test> - <test rtl="True"><string><em>ڵم</em>ف</string></test> - <test rtl="True"><string>ل<em>ڵم</em>ف</string></test> - </testgroup> - <testgroup label="meem + meem"> - <test rtl="True"><string><em>مم</em></string></test> - <test rtl="True"><string>ل<em>مم</em></string></test> - <test rtl="True"><string><em>مم</em>ف</string></test> - <test rtl="True"><string>ل<em>مم</em>ف</string></test> - </testgroup> - <testgroup label="kaf + meem"> - <test rtl="True"><string><em>کم</em></string></test> - <test rtl="True"><string>ل<em>کم</em></string></test> - <test rtl="True"><string><em>کم</em>ف</string></test> - <test rtl="True"><string>ل<em>کم</em>ف</string></test> - </testgroup> - <testgroup label="hehDo + meem"> - <test rtl="True"><string><em>ھم</em></string></test> - <test rtl="True"><string>ل<em>ھم</em></string></test> - <test rtl="True"><string><em>ھم</em>ف</string></test> - <test rtl="True"><string>ل<em>ھم</em>ف</string></test> - </testgroup> - <testgroup label="hehGoal + meem"> - <test rtl="True"><string><em>ہم</em></string></test> - <test rtl="True"><string>ل<em>ہم</em></string></test> - <test rtl="True"><string><em>ہم</em>ف</string></test> - <test rtl="True"><string>ل<em>ہم</em>ف</string></test> - </testgroup> - </testgroup> - <testgroup label="Alternate meem sequences"> - <testgroup label="theh + meem-alt + gaf"> - <test rtl="True"><string><em>ثمگ</em></string></test> - <test rtl="True"><string>ل<em>ثمگ</em></string></test> - <test rtl="True"><string><em>ثمگ</em>ف</string></test> - <test rtl="True"><string>ل<em>ثمگ</em>ف</string></test> - </testgroup> - <testgroup label="tteh + meem-alt + lamBar"> - <test rtl="True"><string><em>ٹمݪ</em></string></test> - <test rtl="True"><string>ل<em>ٹمݪ</em></string></test> - <test rtl="True"><string><em>ٹمݪ</em>ف</string></test> - <test rtl="True"><string>ل<em>ٹمݪ</em>ف</string></test> - </testgroup> - <testgroup label="theh + meem-alt + alef"> - <test rtl="True"><string><em>ثما</em></string></test> - <test rtl="True"><string>ل<em>ثما</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>ٹمذ</em></string></test> - <test rtl="True"><string>ل<em>ٹمذ</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>ځمڱ</em></string></test> - <test rtl="True"><string>ل<em>ځمڱ</em></string></test> - <test rtl="True"><string><em>ځمڱ</em>ف</string></test> - <test rtl="True"><string>ل<em>ځمڱ</em>ف</string></test> - </testgroup> - <testgroup label="hah3dots + meem-alt + lam"> - <test rtl="True"><string><em>څمل</em></string></test> - <test rtl="True"><string>ل<em>څمل</em></string></test> - <test rtl="True"><string><em>څمل</em>ف</string></test> - <test rtl="True"><string>ل<em>څمل</em>ف</string></test> - </testgroup> - <testgroup label="hah + meem-alt + alef"> - <test rtl="True"><string><em>حما</em></string></test> - <test rtl="True"><string>ل<em>حما</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>خمڋ</em></string></test> - <test rtl="True"><string>ل<em>خمڋ</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>شمک</em></string></test> - <test rtl="True"><string>ل<em>شمک</em></string></test> - <test rtl="True"><string><em>شمک</em>ف</string></test> - <test rtl="True"><string>ل<em>شمک</em>ف</string></test> - </testgroup> - <testgroup label="seenDotDot + meem-alt + lamSmallV"> - <test rtl="True"><string><em>ښمڵ</em></string></test> - <test rtl="True"><string>ل<em>ښمڵ</em></string></test> - <test rtl="True"><string><em>ښمڵ</em>ف</string></test> - <test rtl="True"><string>ل<em>ښمڵ</em>ف</string></test> - </testgroup> - <testgroup label="seenTah2smd + meem-alt + alef"> - <test rtl="True"><string><em>ݰما</em></string></test> - <test rtl="True"><string>ل<em>ݰما</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>ڜمډ</em></string></test> - <test rtl="True"><string>ل<em>ڜمډ</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>ۻمڳ</em></string></test> - <test rtl="True"><string>ل<em>ۻمڳ</em></string></test> - <test rtl="True"><string><em>ۻمڳ</em>ف</string></test> - <test rtl="True"><string>ل<em>ۻمڳ</em>ف</string></test> - </testgroup> - <testgroup label="sad + meem-alt + lamBar"> - <test rtl="True"><string><em>صمݪ</em></string></test> - <test rtl="True"><string>ل<em>صمݪ</em></string></test> - <test rtl="True"><string><em>صمݪ</em>ف</string></test> - <test rtl="True"><string>ل<em>صمݪ</em>ف</string></test> - </testgroup> - <testgroup label="dadDotBelow + meem-alt + alef"> - <test rtl="True"><string><em>ۻما</em></string></test> - <test rtl="True"><string>ل<em>ۻما</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>صمد</em></string></test> - <test rtl="True"><string>ل<em>صمد</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>ظمګ</em></string></test> - <test rtl="True"><string>ل<em>ظمګ</em></string></test> - <test rtl="True"><string><em>ظمګ</em>ف</string></test> - <test rtl="True"><string>ل<em>ظمګ</em>ف</string></test> - </testgroup> - <testgroup label="tah + meem-alt + lam"> - <test rtl="True"><string><em>طمل</em></string></test> - <test rtl="True"><string>ل<em>طمل</em></string></test> - <test rtl="True"><string><em>طمل</em>ف</string></test> - <test rtl="True"><string>ل<em>طمل</em>ف</string></test> - </testgroup> - <testgroup label="tah + meem-alt + alef"> - <test rtl="True"><string><em>طما</em></string></test> - <test rtl="True"><string>ل<em>طما</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>ظمڈ</em></string></test> - <test rtl="True"><string>ل<em>ظمڈ</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>عمگ</em></string></test> - <test rtl="True"><string>ل<em>عمگ</em></string></test> - <test rtl="True"><string><em>عمگ</em>ف</string></test> - <test rtl="True"><string>ل<em>عمگ</em>ف</string></test> - </testgroup> - <testgroup label="ghain + meem-alt + lamSmallV"> - <test rtl="True"><string><em>غمڵ</em></string></test> - <test rtl="True"><string>ل<em>غمڵ</em></string></test> - <test rtl="True"><string><em>غمڵ</em>ف</string></test> - <test rtl="True"><string>ل<em>غمڵ</em>ف</string></test> - </testgroup> - <testgroup label="ghain + meem-alt + alef"> - <test rtl="True"><string><em>غما</em></string></test> - <test rtl="True"><string>ل<em>غما</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>عمݙ</em></string></test> - <test rtl="True"><string>ل<em>عمݙ</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>ڥمڱ</em></string></test> - <test rtl="True"><string>ل<em>ڥمڱ</em></string></test> - <test rtl="True"><string><em>ڥمڱ</em>ف</string></test> - <test rtl="True"><string>ل<em>ڥمڱ</em>ف</string></test> - </testgroup> - <testgroup label="feh + meem-alt + lamBar"> - <test rtl="True"><string><em>فمݪ</em></string></test> - <test rtl="True"><string>ل<em>فمݪ</em></string></test> - <test rtl="True"><string><em>فمݪ</em>ف</string></test> - <test rtl="True"><string>ل<em>فمݪ</em>ف</string></test> - </testgroup> - <testgroup label="feh + meem-alt + alef"> - <test rtl="True"><string><em>فما</em></string></test> - <test rtl="True"><string>ل<em>فما</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>ڥمڐ</em></string></test> - <test rtl="True"><string>ل<em>ڥمڐ</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>ممگ</em></string></test> - <test rtl="True"><string>ل<em>ممگ</em></string></test> - <test rtl="True"><string><em>ممگ</em>ف</string></test> - <test rtl="True"><string>ل<em>ممگ</em>ف</string></test> - </testgroup> - <testgroup label="meem + meem-alt + lamBar"> - <test rtl="True"><string><em>ممݪ</em></string></test> - <test rtl="True"><string>ل<em>ممݪ</em></string></test> - <test rtl="True"><string><em>ممݪ</em>ف</string></test> - <test rtl="True"><string>ل<em>ممݪ</em>ف</string></test> - </testgroup> - <testgroup label="meem + meem-alt + alef"> - <test rtl="True"><string><em>مما</em></string></test> - <test rtl="True"><string>ل<em>مما</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>ممڈ</em></string></test> - <test rtl="True"><string>ل<em>ممڈ</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>ھمگ</em></string></test> - <test rtl="True"><string>ل<em>ھمگ</em></string></test> - <test rtl="True"><string><em>ھمگ</em>ف</string></test> - <test rtl="True"><string>ل<em>ھمگ</em>ف</string></test> - </testgroup> - <testgroup label="hehDo + meem-alt + lamBar"> - <test rtl="True"><string><em>ھمݪ</em></string></test> - <test rtl="True"><string>ل<em>ھمݪ</em></string></test> - <test rtl="True"><string><em>ھمݪ</em>ف</string></test> - <test rtl="True"><string>ل<em>ھمݪ</em>ف</string></test> - </testgroup> - <testgroup label="hehDo + meem-alt + alef"> - <test rtl="True"><string><em>ھما</em></string></test> - <test rtl="True"><string>ل<em>ھما</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>ھمډ</em></string></test> - <test rtl="True"><string>ل<em>ھمډ</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>همڱ</em></string></test> - <test rtl="True"><string>ل<em>همڱ</em></string></test> - <test rtl="True"><string><em>همڱ</em>ف</string></test> - <test rtl="True"><string>ل<em>همڱ</em>ف</string></test> - </testgroup> - <testgroup label="hehHamza + meem-alt + lam"> - <test rtl="True"><string><em>ۂمل</em></string></test> - <test rtl="True"><string>ل<em>ۂمل</em></string></test> - <test rtl="True"><string><em>ۂمل</em>ف</string></test> - <test rtl="True"><string>ل<em>ۂمل</em>ف</string></test> - </testgroup> - <testgroup label="hehHamza + meem-alt + alef"> - <test rtl="True"><string><em>ۂما</em></string></test> - <test rtl="True"><string>ل<em>ۂما</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>ہمد</em></string></test> - <test rtl="True"><string>ل<em>ہمد</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>ٹن</em></string></test> - <test rtl="True"><string>ل<em>ٹن</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>ځݨ</em></string></test> - <test rtl="True"><string>ل<em>ځݨ</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>سڻ</em></string></test> - <test rtl="True"><string>ل<em>سڻ</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>صں</em></string></test> - <test rtl="True"><string>ل<em>صں</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>ظڹ</em></string></test> - <test rtl="True"><string>ل<em>ظڹ</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>عن</em></string></test> - <test rtl="True"><string>ل<em>عن</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>ڥݨ</em></string></test> - <test rtl="True"><string>ل<em>ڥݨ</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>ݪڻ</em></string></test> - <test rtl="True"><string>ل<em>ݪڻ</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>مں</em></string></test> - <test rtl="True"><string>ل<em>مں</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>کڹ</em></string></test> - <test rtl="True"><string>ل<em>کڹ</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>ھن</em></string></test> - <test rtl="True"><string>ل<em>ھن</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>ۂݨ</em></string></test> - <test rtl="True"><string>ل<em>ۂݨ</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>بو</em></string></test> - <test rtl="True"><string>ل<em>بو</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>چؤ</em></string></test> - <test rtl="True"><string>ل<em>چؤ</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>ݭۄ</em></string></test> - <test rtl="True"><string>ل<em>ݭۄ</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>صو</em></string></test> - <test rtl="True"><string>ل<em>صو</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>طؤ</em></string></test> - <test rtl="True"><string>ل<em>طؤ</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>غۄ</em></string></test> - <test rtl="True"><string>ل<em>غۄ</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>فو</em></string></test> - <test rtl="True"><string>ل<em>فو</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>ݪؤ</em></string></test> - <test rtl="True"><string>ل<em>ݪؤ</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>مۄ</em></string></test> - <test rtl="True"><string>ل<em>مۄ</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>ڳو</em></string></test> - <test rtl="True"><string>ل<em>ڳو</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>ھؤ</em></string></test> - <test rtl="True"><string>ل<em>ھؤ</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>ۂۄ</em></string></test> - <test rtl="True"><string>ل<em>ۂۄ</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>تک</em></string></test> - <test rtl="True"><string>ل<em>تک</em></string></test> - <test rtl="True"><string><em>تک</em>ف</string></test> - <test rtl="True"><string>ل<em>تک</em>ف</string></test> - </testgroup> - <testgroup label="hah + gueh"> - <test rtl="True"><string><em>حڳ</em></string></test> - <test rtl="True"><string>ل<em>حڳ</em></string></test> - <test rtl="True"><string><em>حڳ</em>ف</string></test> - <test rtl="True"><string>ل<em>حڳ</em>ف</string></test> - </testgroup> - <testgroup label="seen2dotsV + kafRing"> - <test rtl="True"><string><em>ݭګ</em></string></test> - <test rtl="True"><string>ل<em>ݭګ</em></string></test> - <test rtl="True"><string><em>ݭګ</em>ف</string></test> - <test rtl="True"><string>ل<em>ݭګ</em>ف</string></test> - </testgroup> - <testgroup label="dadDotBelow + gaf"> - <test rtl="True"><string><em>ۻگ</em></string></test> - <test rtl="True"><string>ل<em>ۻگ</em></string></test> - <test rtl="True"><string><em>ۻگ</em>ف</string></test> - <test rtl="True"><string>ل<em>ۻگ</em>ف</string></test> - </testgroup> - <testgroup label="tah + ngoeh"> - <test rtl="True"><string><em>طڱ</em></string></test> - <test rtl="True"><string>ل<em>طڱ</em></string></test> - <test rtl="True"><string><em>طڱ</em>ف</string></test> - <test rtl="True"><string>ل<em>طڱ</em>ف</string></test> - </testgroup> - <testgroup label="ghain + kaf"> - <test rtl="True"><string><em>غک</em></string></test> - <test rtl="True"><string>ل<em>غک</em></string></test> - <test rtl="True"><string><em>غک</em>ف</string></test> - <test rtl="True"><string>ل<em>غک</em>ف</string></test> - </testgroup> - <testgroup label="feh + gueh"> - <test rtl="True"><string><em>فڳ</em></string></test> - <test rtl="True"><string>ل<em>فڳ</em></string></test> - <test rtl="True"><string><em>فڳ</em>ف</string></test> - <test rtl="True"><string>ل<em>فڳ</em>ف</string></test> - </testgroup> - <testgroup label="lam + kafRing"> - <test rtl="True"><string><em>لګ</em></string></test> - <test rtl="True"><string>ل<em>لګ</em></string></test> - <test rtl="True"><string><em>لګ</em>ف</string></test> - <test rtl="True"><string>ل<em>لګ</em>ف</string></test> - </testgroup> - <testgroup label="meem + kaf"> - <test rtl="True"><string><em>مک</em></string></test> - <test rtl="True"><string>ل<em>مک</em></string></test> - <test rtl="True"><string><em>مک</em>ف</string></test> - <test rtl="True"><string>ل<em>مک</em>ف</string></test> - </testgroup> - <testgroup label="gaf + gueh"> - <test rtl="True"><string><em>گڳ</em></string></test> - <test rtl="True"><string>ل<em>گڳ</em></string></test> - <test rtl="True"><string><em>گڳ</em>ف</string></test> - <test rtl="True"><string>ل<em>گڳ</em>ف</string></test> - </testgroup> - <testgroup label="hehDo + kaf"> - <test rtl="True"><string><em>ھک</em></string></test> - <test rtl="True"><string>ل<em>ھک</em></string></test> - <test rtl="True"><string><em>ھک</em>ف</string></test> - <test rtl="True"><string>ل<em>ھک</em>ف</string></test> - </testgroup> - <testgroup label="arabicHeh + gueh"> - <test rtl="True"><string><em>هڳ</em></string></test> - <test rtl="True"><string>ل<em>هڳ</em></string></test> - <test rtl="True"><string><em>هڳ</em>ف</string></test> - <test rtl="True"><string>ل<em>هڳ</em>ف</string></test> - </testgroup> - </testgroup> - <testgroup label="Heh-Doachashmee form sequences"> - <testgroup label="theh + hehDo"> - <test rtl="True"><string><em>ثھ</em></string></test> - <test rtl="True"><string>ل<em>ثھ</em></string></test> - <test rtl="True"><string><em>ثھ</em>ف</string></test> - <test rtl="True"><string>ل<em>ثھ</em>ف</string></test> - </testgroup> - <testgroup label="khah + hehDo"> - <test rtl="True"><string><em>خھ</em></string></test> - <test rtl="True"><string>ل<em>خھ</em></string></test> - <test rtl="True"><string><em>خھ</em>ف</string></test> - <test rtl="True"><string>ل<em>خھ</em>ف</string></test> - </testgroup> - <testgroup label="seenTah2smd + hehDo"> - <test rtl="True"><string><em>ݰھ</em></string></test> - <test rtl="True"><string>ل<em>ݰھ</em></string></test> - <test rtl="True"><string><em>ݰھ</em>ف</string></test> - <test rtl="True"><string>ل<em>ݰھ</em>ف</string></test> - </testgroup> - <testgroup label="sad + hehDo"> - <test rtl="True"><string><em>صھ</em></string></test> - <test rtl="True"><string>ل<em>صھ</em></string></test> - <test rtl="True"><string><em>صھ</em>ف</string></test> - <test rtl="True"><string>ل<em>صھ</em>ف</string></test> - </testgroup> - <testgroup label="zah + hehDo"> - <test rtl="True"><string><em>ظھ</em></string></test> - <test rtl="True"><string>ل<em>ظھ</em></string></test> - <test rtl="True"><string><em>ظھ</em>ف</string></test> - <test rtl="True"><string>ل<em>ظھ</em>ف</string></test> - </testgroup> - <testgroup label="ain + hehDo"> - <test rtl="True"><string><em>عھ</em></string></test> - <test rtl="True"><string>ل<em>عھ</em></string></test> - <test rtl="True"><string><em>عھ</em>ف</string></test> - <test rtl="True"><string>ل<em>عھ</em>ف</string></test> - </testgroup> - <testgroup label="feh3dots + hehDo"> - <test rtl="True"><string><em>ڥھ</em></string></test> - <test rtl="True"><string>ل<em>ڥھ</em></string></test> - <test rtl="True"><string><em>ڥھ</em>ف</string></test> - <test rtl="True"><string>ل<em>ڥھ</em>ف</string></test> - </testgroup> - <testgroup label="lamBar + hehDo"> - <test rtl="True"><string><em>ݪھ</em></string></test> - <test rtl="True"><string>ل<em>ݪھ</em></string></test> - <test rtl="True"><string><em>ݪھ</em>ف</string></test> - <test rtl="True"><string>ل<em>ݪھ</em>ف</string></test> - </testgroup> - <testgroup label="meem + hehDo"> - <test rtl="True"><string><em>مھ</em></string></test> - <test rtl="True"><string>ل<em>مھ</em></string></test> - <test rtl="True"><string><em>مھ</em>ف</string></test> - <test rtl="True"><string>ل<em>مھ</em>ف</string></test> - </testgroup> - <testgroup label="ngoeh + hehDo"> - <test rtl="True"><string><em>ڱھ</em></string></test> - <test rtl="True"><string>ل<em>ڱھ</em></string></test> - <test rtl="True"><string><em>ڱھ</em>ف</string></test> - <test rtl="True"><string>ل<em>ڱھ</em>ف</string></test> - </testgroup> - <testgroup label="hehDo + hehDo"> - <test rtl="True"><string><em>ھھ</em></string></test> - <test rtl="True"><string>ل<em>ھھ</em></string></test> - <test rtl="True"><string><em>ھھ</em>ف</string></test> - <test rtl="True"><string>ل<em>ھھ</em>ف</string></test> - </testgroup> - <testgroup label="hehHamza + hehDo"> - <test rtl="True"><string><em>ۂھ</em></string></test> - <test rtl="True"><string>ل<em>ۂھ</em></string></test> - <test rtl="True"><string><em>ۂھ</em>ف</string></test> - <test rtl="True"><string>ل<em>ۂھ</em>ف</string></test> - </testgroup> - </testgroup> - <testgroup label="Heh-Goal form sequences"> - <testgroup label="tteh + hehGoal"> - <test rtl="True"><string><em>ٹہ</em></string></test> - <test rtl="True"><string>ل<em>ٹہ</em></string></test> - <test rtl="True"><string><em>ٹہ</em>ف</string></test> - <test rtl="True"><string>ل<em>ٹہ</em>ف</string></test> - </testgroup> - <testgroup label="tcheh + hehHamza"> - <test rtl="True"><string><em>چۂ</em></string></test> - <test rtl="True"><string>ل<em>چۂ</em></string></test> - <test rtl="True"><string><em>چۂ</em>ف</string></test> - <test rtl="True"><string>ل<em>چۂ</em>ف</string></test> - </testgroup> - <testgroup label="seen3dots3dots + arabicHeh"> - <test rtl="True"><string><em>ڜه</em></string></test> - <test rtl="True"><string>ل<em>ڜه</em></string></test> - <test rtl="True"><string><em>ڜه</em>ف</string></test> - <test rtl="True"><string>ل<em>ڜه</em>ف</string></test> - </testgroup> - <testgroup label="dad + hehGoal"> - <test rtl="True"><string><em>ضہ</em></string></test> - <test rtl="True"><string>ل<em>ضہ</em></string></test> - <test rtl="True"><string><em>ضہ</em>ف</string></test> - <test rtl="True"><string>ل<em>ضہ</em>ف</string></test> - </testgroup> - <testgroup label="tah + hehHamza"> - <test rtl="True"><string><em>طۂ</em></string></test> - <test rtl="True"><string>ل<em>طۂ</em></string></test> - <test rtl="True"><string><em>طۂ</em>ف</string></test> - <test rtl="True"><string>ل<em>طۂ</em>ف</string></test> - </testgroup> - <testgroup label="ghain + arabicHeh"> - <test rtl="True"><string><em>غه</em></string></test> - <test rtl="True"><string>ل<em>غه</em></string></test> - <test rtl="True"><string><em>غه</em>ف</string></test> - <test rtl="True"><string>ل<em>غه</em>ف</string></test> - </testgroup> - <testgroup label="feh + hehGoal"> - <test rtl="True"><string><em>فہ</em></string></test> - <test rtl="True"><string>ل<em>فہ</em></string></test> - <test rtl="True"><string><em>فہ</em>ف</string></test> - <test rtl="True"><string>ل<em>فہ</em>ف</string></test> - </testgroup> - <testgroup label="lamSmallV + hehHamza"> - <test rtl="True"><string><em>ڵۂ</em></string></test> - <test rtl="True"><string>ل<em>ڵۂ</em></string></test> - <test rtl="True"><string><em>ڵۂ</em>ف</string></test> - <test rtl="True"><string>ل<em>ڵۂ</em>ف</string></test> - </testgroup> - <testgroup label="meem + arabicHeh"> - <test rtl="True"><string><em>مه</em></string></test> - <test rtl="True"><string>ل<em>مه</em></string></test> - <test rtl="True"><string><em>مه</em>ف</string></test> - <test rtl="True"><string>ل<em>مه</em>ف</string></test> - </testgroup> - <testgroup label="kafRing + hehGoal"> - <test rtl="True"><string><em>ګہ</em></string></test> - <test rtl="True"><string>ل<em>ګہ</em></string></test> - <test rtl="True"><string><em>ګہ</em>ف</string></test> - <test rtl="True"><string>ل<em>ګہ</em>ف</string></test> - </testgroup> - <testgroup label="hehDo + hehHamza"> - <test rtl="True"><string><em>ھۂ</em></string></test> - <test rtl="True"><string>ل<em>ھۂ</em></string></test> - <test rtl="True"><string><em>ھۂ</em>ف</string></test> - <test rtl="True"><string>ل<em>ھۂ</em>ف</string></test> - </testgroup> - <testgroup label="hehGoal + arabicHeh"> - <test rtl="True"><string><em>ہه</em></string></test> - <test rtl="True"><string>ل<em>ہه</em></string></test> - <test rtl="True"><string><em>ہه</em>ف</string></test> - <test rtl="True"><string>ل<em>ہه</em>ف</string></test> - </testgroup> - </testgroup> - <testgroup label="Teh-marbuta form sequences"> - <testgroup label="peh + tehMarbuta"> - <test rtl="True"><string><em>پة</em></string></test> - <test rtl="True"><string>ل<em>پة</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>څة</em></string></test> - <test rtl="True"><string>ل<em>څة</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>شة</em></string></test> - <test rtl="True"><string>ل<em>شة</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>ضة</em></string></test> - <test rtl="True"><string>ل<em>ضة</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>طة</em></string></test> - <test rtl="True"><string>ل<em>طة</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>غة</em></string></test> - <test rtl="True"><string>ل<em>غة</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>فة</em></string></test> - <test rtl="True"><string>ل<em>فة</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>ڵة</em></string></test> - <test rtl="True"><string>ل<em>ڵة</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>مة</em></string></test> - <test rtl="True"><string>ل<em>مة</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>گة</em></string></test> - <test rtl="True"><string>ل<em>گة</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>ھة</em></string></test> - <test rtl="True"><string>ل<em>ھة</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>ہة</em></string></test> - <test rtl="True"><string>ل<em>ہة</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>ثی</em></string></test> - <test rtl="True"><string>ل<em>ثی</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>ڇئ</em></string></test> - <test rtl="True"><string>ل<em>ڇئ</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>ڜێ</em></string></test> - <test rtl="True"><string>ل<em>ڜێ</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>ۻې</em></string></test> - <test rtl="True"><string>ل<em>ۻې</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>طی</em></string></test> - <test rtl="True"><string>ل<em>طی</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>غئ</em></string></test> - <test rtl="True"><string>ل<em>غئ</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>فێ</em></string></test> - <test rtl="True"><string>ل<em>فێ</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>لې</em></string></test> - <test rtl="True"><string>ل<em>لې</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>می</em></string></test> - <test rtl="True"><string>ل<em>می</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>ګئ</em></string></test> - <test rtl="True"><string>ل<em>ګئ</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>ھێ</em></string></test> - <test rtl="True"><string>ل<em>ھێ</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>هې</em></string></test> - <test rtl="True"><string>ل<em>هې</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>تے</em></string></test> - <test rtl="True"><string>ل<em>تے</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>ڄے</em></string></test> - <test rtl="True"><string>ل<em>ڄے</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>ݰے</em></string></test> - <test rtl="True"><string>ل<em>ݰے</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>ضے</em></string></test> - <test rtl="True"><string>ل<em>ضے</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>ظے</em></string></test> - <test rtl="True"><string>ل<em>ظے</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>عے</em></string></test> - <test rtl="True"><string>ل<em>عے</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>ڥے</em></string></test> - <test rtl="True"><string>ل<em>ڥے</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>ڵے</em></string></test> - <test rtl="True"><string>ل<em>ڵے</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>مے</em></string></test> - <test rtl="True"><string>ل<em>مے</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>ڱے</em></string></test> - <test rtl="True"><string>ل<em>ڱے</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>ھے</em></string></test> - <test rtl="True"><string>ل<em>ھے</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>ہے</em></string></test> - <test rtl="True"><string>ل<em>ہے</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>پٺٻ</em></string></test> - <test rtl="True"><string>ل<em>پٺٻ</em></string></test> - <test rtl="True"><string><em>پٺٻ</em>ف</string></test> - <test rtl="True"><string>ل<em>پٺٻ</em>ف</string></test> - </testgroup> - <testgroup label="tehRing + teh3down + beh + teh"> - <test rtl="True"><string><em>ټٽبت</em></string></test> - <test rtl="True"><string>ل<em>ټٽبت</em></string></test> - <test rtl="True"><string><em>ټٽبت</em>ف</string></test> - <test rtl="True"><string>ل<em>ټٽبت</em>ف</string></test> - </testgroup> - <testgroup label="dyeh + tteheh + beeh"> - <test rtl="True"><string><em>ڄٺٻ</em></string></test> - <test rtl="True"><string>ل<em>ڄٺٻ</em></string></test> - <test rtl="True"><string><em>ڄٺٻ</em>ف</string></test> - <test rtl="True"><string>ل<em>ڄٺٻ</em>ف</string></test> - </testgroup> - <testgroup label="tcheheh + tehRing + teh3down + beh"> - <test rtl="True"><string><em>ڇټٽب</em></string></test> - <test rtl="True"><string>ل<em>ڇټٽب</em></string></test> - <test rtl="True"><string><em>ڇټٽب</em>ف</string></test> - <test rtl="True"><string>ل<em>ڇټٽب</em>ف</string></test> - </testgroup> - <testgroup label="seen + tteheh + beeh"> - <test rtl="True"><string><em>سٺٻ</em></string></test> - <test rtl="True"><string>ل<em>سٺٻ</em></string></test> - <test rtl="True"><string><em>سٺٻ</em>ف</string></test> - <test rtl="True"><string>ل<em>سٺٻ</em>ف</string></test> - </testgroup> - <testgroup label="sheen + tehRing + teh3down + beh"> - <test rtl="True"><string><em>شټٽب</em></string></test> - <test rtl="True"><string>ل<em>شټٽب</em></string></test> - <test rtl="True"><string><em>شټٽب</em>ف</string></test> - <test rtl="True"><string>ل<em>شټٽب</em>ف</string></test> - </testgroup> - <testgroup label="dadDotBelow + tteh + peh"> - <test rtl="True"><string><em>ۻٹپ</em></string></test> - <test rtl="True"><string>ل<em>ۻٹپ</em></string></test> - <test rtl="True"><string><em>ۻٹپ</em>ف</string></test> - <test rtl="True"><string>ل<em>ۻٹپ</em>ف</string></test> - </testgroup> - <testgroup label="sad + tteheh + beeh + tehRing"> - <test rtl="True"><string><em>صٺٻټ</em></string></test> - <test rtl="True"><string>ل<em>صٺٻټ</em></string></test> - <test rtl="True"><string><em>صٺٻټ</em>ف</string></test> - <test rtl="True"><string>ل<em>صٺٻټ</em>ف</string></test> - </testgroup> - <testgroup label="zah + teh + theh"> - <test rtl="True"><string><em>ظتث</em></string></test> - <test rtl="True"><string>ل<em>ظتث</em></string></test> - <test rtl="True"><string><em>ظتث</em>ف</string></test> - <test rtl="True"><string>ل<em>ظتث</em>ف</string></test> - </testgroup> - <testgroup label="tah + tteh + peh + tteheh"> - <test rtl="True"><string><em>طٹپٺ</em></string></test> - <test rtl="True"><string>ل<em>طٹپٺ</em></string></test> - <test rtl="True"><string><em>طٹپٺ</em>ف</string></test> - <test rtl="True"><string>ل<em>طٹپٺ</em>ف</string></test> - </testgroup> - <testgroup label="ain + teh + theh"> - <test rtl="True"><string><em>عتث</em></string></test> - <test rtl="True"><string>ل<em>عتث</em></string></test> - <test rtl="True"><string><em>عتث</em>ف</string></test> - <test rtl="True"><string>ل<em>عتث</em>ف</string></test> - </testgroup> - <testgroup label="ghain + tteh + peh + tteheh"> - <test rtl="True"><string><em>غٹپٺ</em></string></test> - <test rtl="True"><string>ل<em>غٹپٺ</em></string></test> - <test rtl="True"><string><em>غٹپٺ</em>ف</string></test> - <test rtl="True"><string>ل<em>غٹپٺ</em>ف</string></test> - </testgroup> - <testgroup label="feh3dots + teh + theh"> - <test rtl="True"><string><em>ڥتث</em></string></test> - <test rtl="True"><string>ل<em>ڥتث</em></string></test> - <test rtl="True"><string><em>ڥتث</em>ف</string></test> - <test rtl="True"><string>ل<em>ڥتث</em>ف</string></test> - </testgroup> - <testgroup label="feh + tteh + peh + tteheh"> - <test rtl="True"><string><em>فٹپٺ</em></string></test> - <test rtl="True"><string>ل<em>فٹپٺ</em></string></test> - <test rtl="True"><string><em>فٹپٺ</em>ف</string></test> - <test rtl="True"><string>ل<em>فٹپٺ</em>ف</string></test> - </testgroup> - <testgroup label="lam + teh + theh"> - <test rtl="True"><string><em>لتث</em></string></test> - <test rtl="True"><string>ل<em>لتث</em></string></test> - <test rtl="True"><string><em>لتث</em>ف</string></test> - <test rtl="True"><string>ل<em>لتث</em>ف</string></test> - </testgroup> - <testgroup label="lamBar + tteh + peh + tteheh"> - <test rtl="True"><string><em>ݪٹپٺ</em></string></test> - <test rtl="True"><string>ل<em>ݪٹپٺ</em></string></test> - <test rtl="True"><string><em>ݪٹپٺ</em>ف</string></test> - <test rtl="True"><string>ل<em>ݪٹپٺ</em>ف</string></test> - </testgroup> - <testgroup label="meem + teh + theh"> - <test rtl="True"><string><em>متث</em></string></test> - <test rtl="True"><string>ل<em>متث</em></string></test> - <test rtl="True"><string><em>متث</em>ف</string></test> - <test rtl="True"><string>ل<em>متث</em>ف</string></test> - </testgroup> - <testgroup label="meem + tteh + peh + tteheh"> - <test rtl="True"><string><em>مٹپٺ</em></string></test> - <test rtl="True"><string>ل<em>مٹپٺ</em></string></test> - <test rtl="True"><string><em>مٹپٺ</em>ف</string></test> - <test rtl="True"><string>ل<em>مٹپٺ</em>ف</string></test> - </testgroup> - <testgroup label="kaf + teh + theh"> - <test rtl="True"><string><em>کتث</em></string></test> - <test rtl="True"><string>ل<em>کتث</em></string></test> - <test rtl="True"><string><em>کتث</em>ف</string></test> - <test rtl="True"><string>ل<em>کتث</em>ف</string></test> - </testgroup> - <testgroup label="gaf + tteh + peh + tteheh"> - <test rtl="True"><string><em>گٹپٺ</em></string></test> - <test rtl="True"><string>ل<em>گٹپٺ</em></string></test> - <test rtl="True"><string><em>گٹپٺ</em>ف</string></test> - <test rtl="True"><string>ل<em>گٹپٺ</em>ف</string></test> - </testgroup> - <testgroup label="hehDo + teh + theh"> - <test rtl="True"><string><em>ھتث</em></string></test> - <test rtl="True"><string>ل<em>ھتث</em></string></test> - <test rtl="True"><string><em>ھتث</em>ف</string></test> - <test rtl="True"><string>ل<em>ھتث</em>ف</string></test> - </testgroup> - <testgroup label="hehDo + tteh + peh + tteheh"> - <test rtl="True"><string><em>ھٹپٺ</em></string></test> - <test rtl="True"><string>ل<em>ھٹپٺ</em></string></test> - <test rtl="True"><string><em>ھٹپٺ</em>ف</string></test> - <test rtl="True"><string>ل<em>ھٹپٺ</em>ف</string></test> - </testgroup> - <testgroup label="hehHamza + teh + theh"> - <test rtl="True"><string><em>ۂتث</em></string></test> - <test rtl="True"><string>ل<em>ۂتث</em></string></test> - <test rtl="True"><string><em>ۂتث</em>ف</string></test> - <test rtl="True"><string>ل<em>ۂتث</em>ف</string></test> - </testgroup> - <testgroup label="hehGoal + tteh + peh + tteheh"> - <test rtl="True"><string><em>ہٹپٺ</em></string></test> - <test rtl="True"><string>ل<em>ہٹپٺ</em></string></test> - <test rtl="True"><string><em>ہٹپٺ</em>ف</string></test> - <test rtl="True"><string>ل<em>ہٹپٺ</em>ف</string></test> - </testgroup> - </testgroup> - <testgroup label="Seen/Sad + Beh sequences"> - <testgroup label="seenDotDot + teh + sad"> - <test rtl="True"><string><em>ښتص</em></string></test> - <test rtl="True"><string>ل<em>ښتص</em></string></test> - <test rtl="True"><string><em>ښتص</em>ف</string></test> - <test rtl="True"><string>ل<em>ښتص</em>ف</string></test> - </testgroup> - <testgroup label="seen4dots + theh + zah"> - <test rtl="True"><string><em>ݜثظ</em></string></test> - <test rtl="True"><string>ل<em>ݜثظ</em></string></test> - <test rtl="True"><string><em>ݜثظ</em>ف</string></test> - <test rtl="True"><string>ل<em>ݜثظ</em>ف</string></test> - </testgroup> - <testgroup label="seen2dotsV + tteh + ghain"> - <test rtl="True"><string><em>ݭٹغ</em></string></test> - <test rtl="True"><string>ل<em>ݭٹغ</em></string></test> - <test rtl="True"><string><em>ݭٹغ</em>ف</string></test> - <test rtl="True"><string>ل<em>ݭٹغ</em>ف</string></test> - </testgroup> - <testgroup label="seenTah2smd + peh + feh3dots"> - <test rtl="True"><string><em>ݰپڥ</em></string></test> - <test rtl="True"><string>ل<em>ݰپڥ</em></string></test> - <test rtl="True"><string><em>ݰپڥ</em>ف</string></test> - <test rtl="True"><string>ل<em>ݰپڥ</em>ف</string></test> - </testgroup> - <testgroup label="seen3dots3dots + tteheh + qaf"> - <test rtl="True"><string><em>ڜٺق</em></string></test> - <test rtl="True"><string>ل<em>ڜٺق</em></string></test> - <test rtl="True"><string><em>ڜٺق</em>ف</string></test> - <test rtl="True"><string>ل<em>ڜٺق</em>ف</string></test> - </testgroup> - <testgroup label="seen + beeh + tehRing"> - <test rtl="True"><string><em>سٻټ</em></string></test> - <test rtl="True"><string>ل<em>سٻټ</em></string></test> - <test rtl="True"><string><em>سٻټ</em>ف</string></test> - <test rtl="True"><string>ل<em>سٻټ</em>ف</string></test> - </testgroup> - <testgroup label="dad + teh3down + dadDotBelow"> - <test rtl="True"><string><em>ضٽۻ</em></string></test> - <test rtl="True"><string>ل<em>ضٽۻ</em></string></test> - <test rtl="True"><string><em>ضٽۻ</em>ف</string></test> - <test rtl="True"><string>ل<em>ضٽۻ</em>ف</string></test> - </testgroup> - <testgroup label="sad + beh + zah"> - <test rtl="True"><string><em>صبظ</em></string></test> - <test rtl="True"><string>ل<em>صبظ</em></string></test> - <test rtl="True"><string><em>صبظ</em>ف</string></test> - <test rtl="True"><string>ل<em>صبظ</em>ف</string></test> - </testgroup> - <testgroup label="dad + teh + ghain"> - <test rtl="True"><string><em>ضتغ</em></string></test> - <test rtl="True"><string>ل<em>ضتغ</em></string></test> - <test rtl="True"><string><em>ضتغ</em>ف</string></test> - <test rtl="True"><string>ل<em>ضتغ</em>ف</string></test> - </testgroup> - <testgroup label="dadDotBelow + theh + feh3dots"> - <test rtl="True"><string><em>ۻثڥ</em></string></test> - <test rtl="True"><string>ل<em>ۻثڥ</em></string></test> - <test rtl="True"><string><em>ۻثڥ</em>ف</string></test> - <test rtl="True"><string>ل<em>ۻثڥ</em>ف</string></test> - </testgroup> - <testgroup label="sad + tteh + qaf"> - <test rtl="True"><string><em>صٹق</em></string></test> - <test rtl="True"><string>ل<em>صٹق</em></string></test> - <test rtl="True"><string><em>صٹق</em>ف</string></test> - <test rtl="True"><string>ل<em>صٹق</em>ف</string></test> - </testgroup> - <testgroup label="dad + peh + tteheh"> - <test rtl="True"><string><em>ضپٺ</em></string></test> - <test rtl="True"><string>ل<em>ضپٺ</em></string></test> - <test rtl="True"><string><em>ضپٺ</em>ف</string></test> - <test rtl="True"><string>ل<em>ضپٺ</em>ف</string></test> - </testgroup> - </testgroup> - <testgroup label="Beh + Reh sequences"> - <testgroup label="tehRing + teh3down + zain"> - <test rtl="True"><string><em>ټٽز</em></string></test> - <test rtl="True"><string>ل<em>ټٽز</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>ݯثژ</em></string></test> - <test rtl="True"><string>ل<em>ݯثژ</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>ݜبږ</em></string></test> - <test rtl="True"><string>ل<em>ݜبږ</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>صټڙ</em></string></test> - <test rtl="True"><string>ل<em>صټڙ</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>طټړ</em></string></test> - <test rtl="True"><string>ل<em>طټړ</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>غټݫ</em></string></test> - <test rtl="True"><string>ل<em>غټݫ</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>فټز</em></string></test> - <test rtl="True"><string>ل<em>فټز</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>ݪټژ</em></string></test> - <test rtl="True"><string>ل<em>ݪټژ</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>مټږ</em></string></test> - <test rtl="True"><string>ل<em>مټږ</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>ڱټڙ</em></string></test> - <test rtl="True"><string>ل<em>ڱټڙ</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>ھټړ</em></string></test> - <test rtl="True"><string>ل<em>ھټړ</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>ۂټݫ</em></string></test> - <test rtl="True"><string>ل<em>ۂټݫ</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>ٺٻں</em></string></test> - <test rtl="True"><string>ل<em>ٺٻں</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>ݮتڹ</em></string></test> - <test rtl="True"><string>ل<em>ݮتڹ</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>ښٽن</em></string></test> - <test rtl="True"><string>ل<em>ښٽن</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>ۻٻݨ</em></string></test> - <test rtl="True"><string>ل<em>ۻٻݨ</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>ظٻڻ</em></string></test> - <test rtl="True"><string>ل<em>ظٻڻ</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>عٻں</em></string></test> - <test rtl="True"><string>ل<em>عٻں</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>ڥٻڹ</em></string></test> - <test rtl="True"><string>ل<em>ڥٻڹ</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>لٻن</em></string></test> - <test rtl="True"><string>ل<em>لٻن</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>مٻݨ</em></string></test> - <test rtl="True"><string>ل<em>مٻݨ</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>ڳٻڻ</em></string></test> - <test rtl="True"><string>ل<em>ڳٻڻ</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>ھٻں</em></string></test> - <test rtl="True"><string>ل<em>ھٻں</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>هٻڹ</em></string></test> - <test rtl="True"><string>ل<em>هٻڹ</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>بته</em></string></test> - <test rtl="True"><string>ل<em>بته</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>جٹہ</em></string></test> - <test rtl="True"><string>ل<em>جٹہ</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>ݭتۂ</em></string></test> - <test rtl="True"><string>ل<em>ݭتۂ</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>ضٽه</em></string></test> - <test rtl="True"><string>ل<em>ضٽه</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>ظٽہ</em></string></test> - <test rtl="True"><string>ل<em>ظٽہ</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>عٽۂ</em></string></test> - <test rtl="True"><string>ل<em>عٽۂ</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>ڥٽه</em></string></test> - <test rtl="True"><string>ل<em>ڥٽه</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>ڵٽہ</em></string></test> - <test rtl="True"><string>ل<em>ڵٽہ</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>مٽۂ</em></string></test> - <test rtl="True"><string>ل<em>مٽۂ</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>ګٽه</em></string></test> - <test rtl="True"><string>ل<em>ګٽه</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>ھٽہ</em></string></test> - <test rtl="True"><string>ل<em>ھٽہ</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>ہٽه</em></string></test> - <test rtl="True"><string>ل<em>ہٽه</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>پشښݜ</em></string></test> - <test rtl="True"><string>ل<em>پشښݜ</em></string></test> - <test rtl="True"><string><em>پشښݜ</em>ف</string></test> - <test rtl="True"><string>ل<em>پشښݜ</em>ف</string></test> - </testgroup> - <testgroup label="hahTah + seenTah2smd + seen3dots3dots + seen"> - <test rtl="True"><string><em>ݮݰڜس</em></string></test> - <test rtl="True"><string>ل<em>ݮݰڜس</em></string></test> - <test rtl="True"><string><em>ݮݰڜس</em>ف</string></test> - <test rtl="True"><string>ل<em>ݮݰڜس</em>ف</string></test> - </testgroup> - <testgroup label="seen4dots + seen2dotsV + seenTah2smd + seen3dots3dots"> - <test rtl="True"><string><em>ݜݭݰڜ</em></string></test> - <test rtl="True"><string>ل<em>ݜݭݰڜ</em></string></test> - <test rtl="True"><string><em>ݜݭݰڜ</em>ف</string></test> - <test rtl="True"><string>ل<em>ݜݭݰڜ</em>ف</string></test> - </testgroup> - <testgroup label="dad + sheen + seenDotDot + seen4dots"> - <test rtl="True"><string><em>ضشښݜ</em></string></test> - <test rtl="True"><string>ل<em>ضشښݜ</em></string></test> - <test rtl="True"><string><em>ضشښݜ</em>ف</string></test> - <test rtl="True"><string>ل<em>ضشښݜ</em>ف</string></test> - </testgroup> - <testgroup label="zah + seenTah2smd + seen3dots3dots + seen"> - <test rtl="True"><string><em>ظݰڜس</em></string></test> - <test rtl="True"><string>ل<em>ظݰڜس</em></string></test> - <test rtl="True"><string><em>ظݰڜس</em>ف</string></test> - <test rtl="True"><string>ل<em>ظݰڜس</em>ف</string></test> - </testgroup> - <testgroup label="ain + seenDotDot + seen4dots + seen2dotsV"> - <test rtl="True"><string><em>عښݜݭ</em></string></test> - <test rtl="True"><string>ل<em>عښݜݭ</em></string></test> - <test rtl="True"><string><em>عښݜݭ</em>ف</string></test> - <test rtl="True"><string>ل<em>عښݜݭ</em>ف</string></test> - </testgroup> - <testgroup label="feh3dots + seen3dots3dots + seen + sheen"> - <test rtl="True"><string><em>ڥڜسش</em></string></test> - <test rtl="True"><string>ل<em>ڥڜسش</em></string></test> - <test rtl="True"><string><em>ڥڜسش</em>ف</string></test> - <test rtl="True"><string>ل<em>ڥڜسش</em>ف</string></test> - </testgroup> - <testgroup label="lamSmallV + seen4dots + seen2dotsV + seenTah2smd"> - <test rtl="True"><string><em>ڵݜݭݰ</em></string></test> - <test rtl="True"><string>ل<em>ڵݜݭݰ</em></string></test> - <test rtl="True"><string><em>ڵݜݭݰ</em>ف</string></test> - <test rtl="True"><string>ل<em>ڵݜݭݰ</em>ف</string></test> - </testgroup> - <testgroup label="meem + seen + sheen + seenDotDot"> - <test rtl="True"><string><em>مسشښ</em></string></test> - <test rtl="True"><string>ل<em>مسشښ</em></string></test> - <test rtl="True"><string><em>مسشښ</em>ف</string></test> - <test rtl="True"><string>ل<em>مسشښ</em>ف</string></test> - </testgroup> - <testgroup label="gueh + seen2dotsV + seenTah2smd + seen3dots3dots"> - <test rtl="True"><string><em>ڳݭݰڜ</em></string></test> - <test rtl="True"><string>ل<em>ڳݭݰڜ</em></string></test> - <test rtl="True"><string><em>ڳݭݰڜ</em>ف</string></test> - <test rtl="True"><string>ل<em>ڳݭݰڜ</em>ف</string></test> - </testgroup> - <testgroup label="hehDo + sheen + seenDotDot + seen4dots"> - <test rtl="True"><string><em>ھشښݜ</em></string></test> - <test rtl="True"><string>ل<em>ھشښݜ</em></string></test> - <test rtl="True"><string><em>ھشښݜ</em>ف</string></test> - <test rtl="True"><string>ل<em>ھشښݜ</em>ف</string></test> - </testgroup> - <testgroup label="hehGoal + seenTah2smd + seen3dots3dots + seen"> - <test rtl="True"><string><em>ہݰڜس</em></string></test> - <test rtl="True"><string>ل<em>ہݰڜس</em></string></test> - <test rtl="True"><string><em>ہݰڜس</em>ف</string></test> - <test rtl="True"><string>ل<em>ہݰڜس</em>ف</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>تَاَ</em></string></test> - <test rtl="True"><string>ل<em>تَاَ</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>لَاَ</em></string></test> - <test rtl="True"><string>ل<em>لَاَ</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>بَاَ</em></string></test> - <test rtl="True"><string>ل<em>بَاَ</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>کَاَ</em></string></test> - <test rtl="True"><string>ل<em>کَاَ</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>ھَاَ</em></string></test> - <test rtl="True"><string>ل<em>ھَاَ</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>ہَاَ</em></string></test> - <test rtl="True"><string>ل<em>ہَاَ</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>فَاَ</em></string></test> - <test rtl="True"><string>ل<em>فَاَ</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>صَاَ</em></string></test> - <test rtl="True"><string>ل<em>صَاَ</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>مَاَ</em></string></test> - <test rtl="True"><string>ل<em>مَاَ</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>عَاَ</em></string></test> - <test rtl="True"><string>ل<em>عَاَ</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>جَاَ</em></string></test> - <test rtl="True"><string>ل<em>جَاَ</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>گَاَ</em></string></test> - <test rtl="True"><string>ل<em>گَاَ</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>سَاَ</em></string></test> - <test rtl="True"><string>ل<em>سَاَ</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>طَاَ</em></string></test> - <test rtl="True"><string>ل<em>طَاَ</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>تِاِ</em></string></test> - <test rtl="True"><string>ل<em>تِاِ</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>لِاِ</em></string></test> - <test rtl="True"><string>ل<em>لِاِ</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>بِاِ</em></string></test> - <test rtl="True"><string>ل<em>بِاِ</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>کِاِ</em></string></test> - <test rtl="True"><string>ل<em>کِاِ</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>ھِاِ</em></string></test> - <test rtl="True"><string>ل<em>ھِاِ</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>ہِاِ</em></string></test> - <test rtl="True"><string>ل<em>ہِاِ</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>فِاِ</em></string></test> - <test rtl="True"><string>ل<em>فِاِ</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>صِاِ</em></string></test> - <test rtl="True"><string>ل<em>صِاِ</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>مِاِ</em></string></test> - <test rtl="True"><string>ل<em>مِاِ</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>عِاِ</em></string></test> - <test rtl="True"><string>ل<em>عِاِ</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>جِاِ</em></string></test> - <test rtl="True"><string>ل<em>جِاِ</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>گِاِ</em></string></test> - <test rtl="True"><string>ل<em>گِاِ</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>سِاِ</em></string></test> - <test rtl="True"><string>ل<em>سِاِ</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>طِاِ</em></string></test> - <test rtl="True"><string>ل<em>طِاِ</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>تَبَ</em></string></test> - <test rtl="True"><string>ل<em>تَبَ</em></string></test> - <test rtl="True"><string><em>تَبَ</em>ف</string></test> - <test rtl="True"><string>ل<em>تَبَ</em>ف</string></test> - </testgroup> - <testgroup label="lam + zabar + beh + zabar"> - <test rtl="True"><string><em>لَبَ</em></string></test> - <test rtl="True"><string>ل<em>لَبَ</em></string></test> - <test rtl="True"><string><em>لَبَ</em>ف</string></test> - <test rtl="True"><string>ل<em>لَبَ</em>ف</string></test> - </testgroup> - <testgroup label="beh + zabar + beh + zabar"> - <test rtl="True"><string><em>بَبَ</em></string></test> - <test rtl="True"><string>ل<em>بَبَ</em></string></test> - <test rtl="True"><string><em>بَبَ</em>ف</string></test> - <test rtl="True"><string>ل<em>بَبَ</em>ف</string></test> - </testgroup> - <testgroup label="kaf + zabar + beh + zabar"> - <test rtl="True"><string><em>کَبَ</em></string></test> - <test rtl="True"><string>ل<em>کَبَ</em></string></test> - <test rtl="True"><string><em>کَبَ</em>ف</string></test> - <test rtl="True"><string>ل<em>کَبَ</em>ف</string></test> - </testgroup> - <testgroup label="hehDo + zabar + beh + zabar"> - <test rtl="True"><string><em>ھَبَ</em></string></test> - <test rtl="True"><string>ل<em>ھَبَ</em></string></test> - <test rtl="True"><string><em>ھَبَ</em>ف</string></test> - <test rtl="True"><string>ل<em>ھَبَ</em>ف</string></test> - </testgroup> - <testgroup label="hehGoal + zabar + beh + zabar"> - <test rtl="True"><string><em>ہَبَ</em></string></test> - <test rtl="True"><string>ل<em>ہَبَ</em></string></test> - <test rtl="True"><string><em>ہَبَ</em>ف</string></test> - <test rtl="True"><string>ل<em>ہَبَ</em>ف</string></test> - </testgroup> - <testgroup label="feh + zabar + beh + zabar"> - <test rtl="True"><string><em>فَبَ</em></string></test> - <test rtl="True"><string>ل<em>فَبَ</em></string></test> - <test rtl="True"><string><em>فَبَ</em>ف</string></test> - <test rtl="True"><string>ل<em>فَبَ</em>ف</string></test> - </testgroup> - <testgroup label="sad + zabar + beh + zabar"> - <test rtl="True"><string><em>صَبَ</em></string></test> - <test rtl="True"><string>ل<em>صَبَ</em></string></test> - <test rtl="True"><string><em>صَبَ</em>ف</string></test> - <test rtl="True"><string>ل<em>صَبَ</em>ف</string></test> - </testgroup> - <testgroup label="meem + zabar + beh + zabar"> - <test rtl="True"><string><em>مَبَ</em></string></test> - <test rtl="True"><string>ل<em>مَبَ</em></string></test> - <test rtl="True"><string><em>مَبَ</em>ف</string></test> - <test rtl="True"><string>ل<em>مَبَ</em>ف</string></test> - </testgroup> - <testgroup label="ain + zabar + beh + zabar"> - <test rtl="True"><string><em>عَبَ</em></string></test> - <test rtl="True"><string>ل<em>عَبَ</em></string></test> - <test rtl="True"><string><em>عَبَ</em>ف</string></test> - <test rtl="True"><string>ل<em>عَبَ</em>ف</string></test> - </testgroup> - <testgroup label="jeem + zabar + beh + zabar"> - <test rtl="True"><string><em>جَبَ</em></string></test> - <test rtl="True"><string>ل<em>جَبَ</em></string></test> - <test rtl="True"><string><em>جَبَ</em>ف</string></test> - <test rtl="True"><string>ل<em>جَبَ</em>ف</string></test> - </testgroup> - <testgroup label="gaf + zabar + beh + zabar"> - <test rtl="True"><string><em>گَبَ</em></string></test> - <test rtl="True"><string>ل<em>گَبَ</em></string></test> - <test rtl="True"><string><em>گَبَ</em>ف</string></test> - <test rtl="True"><string>ل<em>گَبَ</em>ف</string></test> - </testgroup> - <testgroup label="seen + zabar + beh + zabar"> - <test rtl="True"><string><em>سَبَ</em></string></test> - <test rtl="True"><string>ل<em>سَبَ</em></string></test> - <test rtl="True"><string><em>سَبَ</em>ف</string></test> - <test rtl="True"><string>ل<em>سَبَ</em>ف</string></test> - </testgroup> - <testgroup label="tah + zabar + beh + zabar"> - <test rtl="True"><string><em>طَبَ</em></string></test> - <test rtl="True"><string>ل<em>طَبَ</em></string></test> - <test rtl="True"><string><em>طَبَ</em>ف</string></test> - <test rtl="True"><string>ل<em>طَبَ</em>ف</string></test> - </testgroup> - </testgroup> - <testgroup label="Beh form sequences with Zair"> - <testgroup label="teh + zair + beh + zair"> - <test rtl="True"><string><em>تِبِ</em></string></test> - <test rtl="True"><string>ل<em>تِبِ</em></string></test> - <test rtl="True"><string><em>تِبِ</em>ف</string></test> - <test rtl="True"><string>ل<em>تِبِ</em>ف</string></test> - </testgroup> - <testgroup label="lam + zair + beh + zair"> - <test rtl="True"><string><em>لِبِ</em></string></test> - <test rtl="True"><string>ل<em>لِبِ</em></string></test> - <test rtl="True"><string><em>لِبِ</em>ف</string></test> - <test rtl="True"><string>ل<em>لِبِ</em>ف</string></test> - </testgroup> - <testgroup label="beh + zair + beh + zair"> - <test rtl="True"><string><em>بِبِ</em></string></test> - <test rtl="True"><string>ل<em>بِبِ</em></string></test> - <test rtl="True"><string><em>بِبِ</em>ف</string></test> - <test rtl="True"><string>ل<em>بِبِ</em>ف</string></test> - </testgroup> - <testgroup label="kaf + zair + beh + zair"> - <test rtl="True"><string><em>کِبِ</em></string></test> - <test rtl="True"><string>ل<em>کِبِ</em></string></test> - <test rtl="True"><string><em>کِبِ</em>ف</string></test> - <test rtl="True"><string>ل<em>کِبِ</em>ف</string></test> - </testgroup> - <testgroup label="hehDo + zair + beh + zair"> - <test rtl="True"><string><em>ھِبِ</em></string></test> - <test rtl="True"><string>ل<em>ھِبِ</em></string></test> - <test rtl="True"><string><em>ھِبِ</em>ف</string></test> - <test rtl="True"><string>ل<em>ھِبِ</em>ف</string></test> - </testgroup> - <testgroup label="hehGoal + zair + beh + zair"> - <test rtl="True"><string><em>ہِبِ</em></string></test> - <test rtl="True"><string>ل<em>ہِبِ</em></string></test> - <test rtl="True"><string><em>ہِبِ</em>ف</string></test> - <test rtl="True"><string>ل<em>ہِبِ</em>ف</string></test> - </testgroup> - <testgroup label="feh + zair + beh + zair"> - <test rtl="True"><string><em>فِبِ</em></string></test> - <test rtl="True"><string>ل<em>فِبِ</em></string></test> - <test rtl="True"><string><em>فِبِ</em>ف</string></test> - <test rtl="True"><string>ل<em>فِبِ</em>ف</string></test> - </testgroup> - <testgroup label="sad + zair + beh + zair"> - <test rtl="True"><string><em>صِبِ</em></string></test> - <test rtl="True"><string>ل<em>صِبِ</em></string></test> - <test rtl="True"><string><em>صِبِ</em>ف</string></test> - <test rtl="True"><string>ل<em>صِبِ</em>ف</string></test> - </testgroup> - <testgroup label="meem + zair + beh + zair"> - <test rtl="True"><string><em>مِبِ</em></string></test> - <test rtl="True"><string>ل<em>مِبِ</em></string></test> - <test rtl="True"><string><em>مِبِ</em>ف</string></test> - <test rtl="True"><string>ل<em>مِبِ</em>ف</string></test> - </testgroup> - <testgroup label="ain + zair + beh + zair"> - <test rtl="True"><string><em>عِبِ</em></string></test> - <test rtl="True"><string>ل<em>عِبِ</em></string></test> - <test rtl="True"><string><em>عِبِ</em>ف</string></test> - <test rtl="True"><string>ل<em>عِبِ</em>ف</string></test> - </testgroup> - <testgroup label="jeem + zair + beh + zair"> - <test rtl="True"><string><em>جِبِ</em></string></test> - <test rtl="True"><string>ل<em>جِبِ</em></string></test> - <test rtl="True"><string><em>جِبِ</em>ف</string></test> - <test rtl="True"><string>ل<em>جِبِ</em>ف</string></test> - </testgroup> - <testgroup label="gaf + zair + beh + zair"> - <test rtl="True"><string><em>گِبِ</em></string></test> - <test rtl="True"><string>ل<em>گِبِ</em></string></test> - <test rtl="True"><string><em>گِبِ</em>ف</string></test> - <test rtl="True"><string>ل<em>گِبِ</em>ف</string></test> - </testgroup> - <testgroup label="seen + zair + beh + zair"> - <test rtl="True"><string><em>سِبِ</em></string></test> - <test rtl="True"><string>ل<em>سِبِ</em></string></test> - <test rtl="True"><string><em>سِبِ</em>ف</string></test> - <test rtl="True"><string>ل<em>سِبِ</em>ف</string></test> - </testgroup> - <testgroup label="tah + zair + beh + zair"> - <test rtl="True"><string><em>طِبِ</em></string></test> - <test rtl="True"><string>ل<em>طِبِ</em></string></test> - <test rtl="True"><string><em>طِبِ</em>ف</string></test> - <test rtl="True"><string>ل<em>طِبِ</em>ف</string></test> - </testgroup> - </testgroup> - <testgroup label="Teh form sequences with Zabar"> - <testgroup label="teh + zabar + teh + zabar"> - <test rtl="True"><string><em>تَتَ</em></string></test> - <test rtl="True"><string>ل<em>تَتَ</em></string></test> - <test rtl="True"><string><em>تَتَ</em>ف</string></test> - <test rtl="True"><string>ل<em>تَتَ</em>ف</string></test> - </testgroup> - <testgroup label="lam + zabar + teh + zabar"> - <test rtl="True"><string><em>لَتَ</em></string></test> - <test rtl="True"><string>ل<em>لَتَ</em></string></test> - <test rtl="True"><string><em>لَتَ</em>ف</string></test> - <test rtl="True"><string>ل<em>لَتَ</em>ف</string></test> - </testgroup> - <testgroup label="beh + zabar + teh + zabar"> - <test rtl="True"><string><em>بَتَ</em></string></test> - <test rtl="True"><string>ل<em>بَتَ</em></string></test> - <test rtl="True"><string><em>بَتَ</em>ف</string></test> - <test rtl="True"><string>ل<em>بَتَ</em>ف</string></test> - </testgroup> - <testgroup label="kaf + zabar + teh + zabar"> - <test rtl="True"><string><em>کَتَ</em></string></test> - <test rtl="True"><string>ل<em>کَتَ</em></string></test> - <test rtl="True"><string><em>کَتَ</em>ف</string></test> - <test rtl="True"><string>ل<em>کَتَ</em>ف</string></test> - </testgroup> - <testgroup label="hehDo + zabar + teh + zabar"> - <test rtl="True"><string><em>ھَتَ</em></string></test> - <test rtl="True"><string>ل<em>ھَتَ</em></string></test> - <test rtl="True"><string><em>ھَتَ</em>ف</string></test> - <test rtl="True"><string>ل<em>ھَتَ</em>ف</string></test> - </testgroup> - <testgroup label="hehGoal + zabar + teh + zabar"> - <test rtl="True"><string><em>ہَتَ</em></string></test> - <test rtl="True"><string>ل<em>ہَتَ</em></string></test> - <test rtl="True"><string><em>ہَتَ</em>ف</string></test> - <test rtl="True"><string>ل<em>ہَتَ</em>ف</string></test> - </testgroup> - <testgroup label="feh + zabar + teh + zabar"> - <test rtl="True"><string><em>فَتَ</em></string></test> - <test rtl="True"><string>ل<em>فَتَ</em></string></test> - <test rtl="True"><string><em>فَتَ</em>ف</string></test> - <test rtl="True"><string>ل<em>فَتَ</em>ف</string></test> - </testgroup> - <testgroup label="sad + zabar + teh + zabar"> - <test rtl="True"><string><em>صَتَ</em></string></test> - <test rtl="True"><string>ل<em>صَتَ</em></string></test> - <test rtl="True"><string><em>صَتَ</em>ف</string></test> - <test rtl="True"><string>ل<em>صَتَ</em>ف</string></test> - </testgroup> - <testgroup label="meem + zabar + teh + zabar"> - <test rtl="True"><string><em>مَتَ</em></string></test> - <test rtl="True"><string>ل<em>مَتَ</em></string></test> - <test rtl="True"><string><em>مَتَ</em>ف</string></test> - <test rtl="True"><string>ل<em>مَتَ</em>ف</string></test> - </testgroup> - <testgroup label="ain + zabar + teh + zabar"> - <test rtl="True"><string><em>عَتَ</em></string></test> - <test rtl="True"><string>ل<em>عَتَ</em></string></test> - <test rtl="True"><string><em>عَتَ</em>ف</string></test> - <test rtl="True"><string>ل<em>عَتَ</em>ف</string></test> - </testgroup> - <testgroup label="jeem + zabar + teh + zabar"> - <test rtl="True"><string><em>جَتَ</em></string></test> - <test rtl="True"><string>ل<em>جَتَ</em></string></test> - <test rtl="True"><string><em>جَتَ</em>ف</string></test> - <test rtl="True"><string>ل<em>جَتَ</em>ف</string></test> - </testgroup> - <testgroup label="gaf + zabar + teh + zabar"> - <test rtl="True"><string><em>گَتَ</em></string></test> - <test rtl="True"><string>ل<em>گَتَ</em></string></test> - <test rtl="True"><string><em>گَتَ</em>ف</string></test> - <test rtl="True"><string>ل<em>گَتَ</em>ف</string></test> - </testgroup> - <testgroup label="seen + zabar + teh + zabar"> - <test rtl="True"><string><em>سَتَ</em></string></test> - <test rtl="True"><string>ل<em>سَتَ</em></string></test> - <test rtl="True"><string><em>سَتَ</em>ف</string></test> - <test rtl="True"><string>ل<em>سَتَ</em>ف</string></test> - </testgroup> - <testgroup label="tah + zabar + teh + zabar"> - <test rtl="True"><string><em>طَتَ</em></string></test> - <test rtl="True"><string>ل<em>طَتَ</em></string></test> - <test rtl="True"><string><em>طَتَ</em>ف</string></test> - <test rtl="True"><string>ل<em>طَتَ</em>ف</string></test> - </testgroup> - </testgroup> - <testgroup label="Teh form sequences with Zair"> - <testgroup label="teh + zair + teh + zair"> - <test rtl="True"><string><em>تِتِ</em></string></test> - <test rtl="True"><string>ل<em>تِتِ</em></string></test> - <test rtl="True"><string><em>تِتِ</em>ف</string></test> - <test rtl="True"><string>ل<em>تِتِ</em>ف</string></test> - </testgroup> - <testgroup label="lam + zair + teh + zair"> - <test rtl="True"><string><em>لِتِ</em></string></test> - <test rtl="True"><string>ل<em>لِتِ</em></string></test> - <test rtl="True"><string><em>لِتِ</em>ف</string></test> - <test rtl="True"><string>ل<em>لِتِ</em>ف</string></test> - </testgroup> - <testgroup label="beh + zair + teh + zair"> - <test rtl="True"><string><em>بِتِ</em></string></test> - <test rtl="True"><string>ل<em>بِتِ</em></string></test> - <test rtl="True"><string><em>بِتِ</em>ف</string></test> - <test rtl="True"><string>ل<em>بِتِ</em>ف</string></test> - </testgroup> - <testgroup label="kaf + zair + teh + zair"> - <test rtl="True"><string><em>کِتِ</em></string></test> - <test rtl="True"><string>ل<em>کِتِ</em></string></test> - <test rtl="True"><string><em>کِتِ</em>ف</string></test> - <test rtl="True"><string>ل<em>کِتِ</em>ف</string></test> - </testgroup> - <testgroup label="hehDo + zair + teh + zair"> - <test rtl="True"><string><em>ھِتِ</em></string></test> - <test rtl="True"><string>ل<em>ھِتِ</em></string></test> - <test rtl="True"><string><em>ھِتِ</em>ف</string></test> - <test rtl="True"><string>ل<em>ھِتِ</em>ف</string></test> - </testgroup> - <testgroup label="hehGoal + zair + teh + zair"> - <test rtl="True"><string><em>ہِتِ</em></string></test> - <test rtl="True"><string>ل<em>ہِتِ</em></string></test> - <test rtl="True"><string><em>ہِتِ</em>ف</string></test> - <test rtl="True"><string>ل<em>ہِتِ</em>ف</string></test> - </testgroup> - <testgroup label="feh + zair + teh + zair"> - <test rtl="True"><string><em>فِتِ</em></string></test> - <test rtl="True"><string>ل<em>فِتِ</em></string></test> - <test rtl="True"><string><em>فِتِ</em>ف</string></test> - <test rtl="True"><string>ل<em>فِتِ</em>ف</string></test> - </testgroup> - <testgroup label="sad + zair + teh + zair"> - <test rtl="True"><string><em>صِتِ</em></string></test> - <test rtl="True"><string>ل<em>صِتِ</em></string></test> - <test rtl="True"><string><em>صِتِ</em>ف</string></test> - <test rtl="True"><string>ل<em>صِتِ</em>ف</string></test> - </testgroup> - <testgroup label="meem + zair + teh + zair"> - <test rtl="True"><string><em>مِتِ</em></string></test> - <test rtl="True"><string>ل<em>مِتِ</em></string></test> - <test rtl="True"><string><em>مِتِ</em>ف</string></test> - <test rtl="True"><string>ل<em>مِتِ</em>ف</string></test> - </testgroup> - <testgroup label="ain + zair + teh + zair"> - <test rtl="True"><string><em>عِتِ</em></string></test> - <test rtl="True"><string>ل<em>عِتِ</em></string></test> - <test rtl="True"><string><em>عِتِ</em>ف</string></test> - <test rtl="True"><string>ل<em>عِتِ</em>ف</string></test> - </testgroup> - <testgroup label="jeem + zair + teh + zair"> - <test rtl="True"><string><em>جِتِ</em></string></test> - <test rtl="True"><string>ل<em>جِتِ</em></string></test> - <test rtl="True"><string><em>جِتِ</em>ف</string></test> - <test rtl="True"><string>ل<em>جِتِ</em>ف</string></test> - </testgroup> - <testgroup label="gaf + zair + teh + zair"> - <test rtl="True"><string><em>گِتِ</em></string></test> - <test rtl="True"><string>ل<em>گِتِ</em></string></test> - <test rtl="True"><string><em>گِتِ</em>ف</string></test> - <test rtl="True"><string>ل<em>گِتِ</em>ف</string></test> - </testgroup> - <testgroup label="seen + zair + teh + zair"> - <test rtl="True"><string><em>سِتِ</em></string></test> - <test rtl="True"><string>ل<em>سِتِ</em></string></test> - <test rtl="True"><string><em>سِتِ</em>ف</string></test> - <test rtl="True"><string>ل<em>سِتِ</em>ف</string></test> - </testgroup> - <testgroup label="tah + zair + teh + zair"> - <test rtl="True"><string><em>طِتِ</em></string></test> - <test rtl="True"><string>ل<em>طِتِ</em></string></test> - <test rtl="True"><string><em>طِتِ</em>ف</string></test> - <test rtl="True"><string>ل<em>طِتِ</em>ف</string></test> - </testgroup> - </testgroup> - <testgroup label="Jeem form sequences with Zabar"> - <testgroup label="teh + zabar + jeem + zabar"> - <test rtl="True"><string><em>تَجَ</em></string></test> - <test rtl="True"><string>ل<em>تَجَ</em></string></test> - <test rtl="True"><string><em>تَجَ</em>ف</string></test> - <test rtl="True"><string>ل<em>تَجَ</em>ف</string></test> - </testgroup> - <testgroup label="lam + zabar + jeem + zabar"> - <test rtl="True"><string><em>لَجَ</em></string></test> - <test rtl="True"><string>ل<em>لَجَ</em></string></test> - <test rtl="True"><string><em>لَجَ</em>ف</string></test> - <test rtl="True"><string>ل<em>لَجَ</em>ف</string></test> - </testgroup> - <testgroup label="beh + zabar + jeem + zabar"> - <test rtl="True"><string><em>بَجَ</em></string></test> - <test rtl="True"><string>ل<em>بَجَ</em></string></test> - <test rtl="True"><string><em>بَجَ</em>ف</string></test> - <test rtl="True"><string>ل<em>بَجَ</em>ف</string></test> - </testgroup> - <testgroup label="kaf + zabar + jeem + zabar"> - <test rtl="True"><string><em>کَجَ</em></string></test> - <test rtl="True"><string>ل<em>کَجَ</em></string></test> - <test rtl="True"><string><em>کَجَ</em>ف</string></test> - <test rtl="True"><string>ل<em>کَجَ</em>ف</string></test> - </testgroup> - <testgroup label="hehDo + zabar + jeem + zabar"> - <test rtl="True"><string><em>ھَجَ</em></string></test> - <test rtl="True"><string>ل<em>ھَجَ</em></string></test> - <test rtl="True"><string><em>ھَجَ</em>ف</string></test> - <test rtl="True"><string>ل<em>ھَجَ</em>ف</string></test> - </testgroup> - <testgroup label="hehGoal + zabar + jeem + zabar"> - <test rtl="True"><string><em>ہَجَ</em></string></test> - <test rtl="True"><string>ل<em>ہَجَ</em></string></test> - <test rtl="True"><string><em>ہَجَ</em>ف</string></test> - <test rtl="True"><string>ل<em>ہَجَ</em>ف</string></test> - </testgroup> - <testgroup label="feh + zabar + jeem + zabar"> - <test rtl="True"><string><em>فَجَ</em></string></test> - <test rtl="True"><string>ل<em>فَجَ</em></string></test> - <test rtl="True"><string><em>فَجَ</em>ف</string></test> - <test rtl="True"><string>ل<em>فَجَ</em>ف</string></test> - </testgroup> - <testgroup label="sad + zabar + jeem + zabar"> - <test rtl="True"><string><em>صَجَ</em></string></test> - <test rtl="True"><string>ل<em>صَجَ</em></string></test> - <test rtl="True"><string><em>صَجَ</em>ف</string></test> - <test rtl="True"><string>ل<em>صَجَ</em>ف</string></test> - </testgroup> - <testgroup label="meem + zabar + jeem + zabar"> - <test rtl="True"><string><em>مَجَ</em></string></test> - <test rtl="True"><string>ل<em>مَجَ</em></string></test> - <test rtl="True"><string><em>مَجَ</em>ف</string></test> - <test rtl="True"><string>ل<em>مَجَ</em>ف</string></test> - </testgroup> - <testgroup label="ain + zabar + jeem + zabar"> - <test rtl="True"><string><em>عَجَ</em></string></test> - <test rtl="True"><string>ل<em>عَجَ</em></string></test> - <test rtl="True"><string><em>عَجَ</em>ف</string></test> - <test rtl="True"><string>ل<em>عَجَ</em>ف</string></test> - </testgroup> - <testgroup label="jeem + zabar + jeem + zabar"> - <test rtl="True"><string><em>جَجَ</em></string></test> - <test rtl="True"><string>ل<em>جَجَ</em></string></test> - <test rtl="True"><string><em>جَجَ</em>ف</string></test> - <test rtl="True"><string>ل<em>جَجَ</em>ف</string></test> - </testgroup> - <testgroup label="gaf + zabar + jeem + zabar"> - <test rtl="True"><string><em>گَجَ</em></string></test> - <test rtl="True"><string>ل<em>گَجَ</em></string></test> - <test rtl="True"><string><em>گَجَ</em>ف</string></test> - <test rtl="True"><string>ل<em>گَجَ</em>ف</string></test> - </testgroup> - <testgroup label="seen + zabar + jeem + zabar"> - <test rtl="True"><string><em>سَجَ</em></string></test> - <test rtl="True"><string>ل<em>سَجَ</em></string></test> - <test rtl="True"><string><em>سَجَ</em>ف</string></test> - <test rtl="True"><string>ل<em>سَجَ</em>ف</string></test> - </testgroup> - <testgroup label="tah + zabar + jeem + zabar"> - <test rtl="True"><string><em>طَجَ</em></string></test> - <test rtl="True"><string>ل<em>طَجَ</em></string></test> - <test rtl="True"><string><em>طَجَ</em>ف</string></test> - <test rtl="True"><string>ل<em>طَجَ</em>ف</string></test> - </testgroup> - </testgroup> - <testgroup label="Jeem form sequences with Zair"> - <testgroup label="teh + zair + jeem + zair"> - <test rtl="True"><string><em>تِجِ</em></string></test> - <test rtl="True"><string>ل<em>تِجِ</em></string></test> - <test rtl="True"><string><em>تِجِ</em>ف</string></test> - <test rtl="True"><string>ل<em>تِجِ</em>ف</string></test> - </testgroup> - <testgroup label="lam + zair + jeem + zair"> - <test rtl="True"><string><em>لِجِ</em></string></test> - <test rtl="True"><string>ل<em>لِجِ</em></string></test> - <test rtl="True"><string><em>لِجِ</em>ف</string></test> - <test rtl="True"><string>ل<em>لِجِ</em>ف</string></test> - </testgroup> - <testgroup label="beh + zair + jeem + zair"> - <test rtl="True"><string><em>بِجِ</em></string></test> - <test rtl="True"><string>ل<em>بِجِ</em></string></test> - <test rtl="True"><string><em>بِجِ</em>ف</string></test> - <test rtl="True"><string>ل<em>بِجِ</em>ف</string></test> - </testgroup> - <testgroup label="kaf + zair + jeem + zair"> - <test rtl="True"><string><em>کِجِ</em></string></test> - <test rtl="True"><string>ل<em>کِجِ</em></string></test> - <test rtl="True"><string><em>کِجِ</em>ف</string></test> - <test rtl="True"><string>ل<em>کِجِ</em>ف</string></test> - </testgroup> - <testgroup label="hehDo + zair + jeem + zair"> - <test rtl="True"><string><em>ھِجِ</em></string></test> - <test rtl="True"><string>ل<em>ھِجِ</em></string></test> - <test rtl="True"><string><em>ھِجِ</em>ف</string></test> - <test rtl="True"><string>ل<em>ھِجِ</em>ف</string></test> - </testgroup> - <testgroup label="hehGoal + zair + jeem + zair"> - <test rtl="True"><string><em>ہِجِ</em></string></test> - <test rtl="True"><string>ل<em>ہِجِ</em></string></test> - <test rtl="True"><string><em>ہِجِ</em>ف</string></test> - <test rtl="True"><string>ل<em>ہِجِ</em>ف</string></test> - </testgroup> - <testgroup label="feh + zair + jeem + zair"> - <test rtl="True"><string><em>فِجِ</em></string></test> - <test rtl="True"><string>ل<em>فِجِ</em></string></test> - <test rtl="True"><string><em>فِجِ</em>ف</string></test> - <test rtl="True"><string>ل<em>فِجِ</em>ف</string></test> - </testgroup> - <testgroup label="sad + zair + jeem + zair"> - <test rtl="True"><string><em>صِجِ</em></string></test> - <test rtl="True"><string>ل<em>صِجِ</em></string></test> - <test rtl="True"><string><em>صِجِ</em>ف</string></test> - <test rtl="True"><string>ل<em>صِجِ</em>ف</string></test> - </testgroup> - <testgroup label="meem + zair + jeem + zair"> - <test rtl="True"><string><em>مِجِ</em></string></test> - <test rtl="True"><string>ل<em>مِجِ</em></string></test> - <test rtl="True"><string><em>مِجِ</em>ف</string></test> - <test rtl="True"><string>ل<em>مِجِ</em>ف</string></test> - </testgroup> - <testgroup label="ain + zair + jeem + zair"> - <test rtl="True"><string><em>عِجِ</em></string></test> - <test rtl="True"><string>ل<em>عِجِ</em></string></test> - <test rtl="True"><string><em>عِجِ</em>ف</string></test> - <test rtl="True"><string>ل<em>عِجِ</em>ف</string></test> - </testgroup> - <testgroup label="jeem + zair + jeem + zair"> - <test rtl="True"><string><em>جِجِ</em></string></test> - <test rtl="True"><string>ل<em>جِجِ</em></string></test> - <test rtl="True"><string><em>جِجِ</em>ف</string></test> - <test rtl="True"><string>ل<em>جِجِ</em>ف</string></test> - </testgroup> - <testgroup label="gaf + zair + jeem + zair"> - <test rtl="True"><string><em>گِجِ</em></string></test> - <test rtl="True"><string>ل<em>گِجِ</em></string></test> - <test rtl="True"><string><em>گِجِ</em>ف</string></test> - <test rtl="True"><string>ل<em>گِجِ</em>ف</string></test> - </testgroup> - <testgroup label="seen + zair + jeem + zair"> - <test rtl="True"><string><em>سِجِ</em></string></test> - <test rtl="True"><string>ل<em>سِجِ</em></string></test> - <test rtl="True"><string><em>سِجِ</em>ف</string></test> - <test rtl="True"><string>ل<em>سِجِ</em>ف</string></test> - </testgroup> - <testgroup label="tah + zair + jeem + zair"> - <test rtl="True"><string><em>طِجِ</em></string></test> - <test rtl="True"><string>ل<em>طِجِ</em></string></test> - <test rtl="True"><string><em>طِجِ</em>ف</string></test> - <test rtl="True"><string>ل<em>طِجِ</em>ف</string></test> - </testgroup> - </testgroup> - <testgroup label="Dal form sequences with Zabar"> - <testgroup label="teh + zabar + dal + zabar"> - <test rtl="True"><string><em>تَدَ</em></string></test> - <test rtl="True"><string>ل<em>تَدَ</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>لَدَ</em></string></test> - <test rtl="True"><string>ل<em>لَدَ</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>بَدَ</em></string></test> - <test rtl="True"><string>ل<em>بَدَ</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>کَدَ</em></string></test> - <test rtl="True"><string>ل<em>کَدَ</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>ھَدَ</em></string></test> - <test rtl="True"><string>ل<em>ھَدَ</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>ہَدَ</em></string></test> - <test rtl="True"><string>ل<em>ہَدَ</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>فَدَ</em></string></test> - <test rtl="True"><string>ل<em>فَدَ</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>صَدَ</em></string></test> - <test rtl="True"><string>ل<em>صَدَ</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>مَدَ</em></string></test> - <test rtl="True"><string>ل<em>مَدَ</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>عَدَ</em></string></test> - <test rtl="True"><string>ل<em>عَدَ</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>جَدَ</em></string></test> - <test rtl="True"><string>ل<em>جَدَ</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>گَدَ</em></string></test> - <test rtl="True"><string>ل<em>گَدَ</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>سَدَ</em></string></test> - <test rtl="True"><string>ل<em>سَدَ</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>طَدَ</em></string></test> - <test rtl="True"><string>ل<em>طَدَ</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>تِدِ</em></string></test> - <test rtl="True"><string>ل<em>تِدِ</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>لِدِ</em></string></test> - <test rtl="True"><string>ل<em>لِدِ</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>بِدِ</em></string></test> - <test rtl="True"><string>ل<em>بِدِ</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>کِدِ</em></string></test> - <test rtl="True"><string>ل<em>کِدِ</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>ھِدِ</em></string></test> - <test rtl="True"><string>ل<em>ھِدِ</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>ہِدِ</em></string></test> - <test rtl="True"><string>ل<em>ہِدِ</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>فِدِ</em></string></test> - <test rtl="True"><string>ل<em>فِدِ</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>صِدِ</em></string></test> - <test rtl="True"><string>ل<em>صِدِ</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>مِدِ</em></string></test> - <test rtl="True"><string>ل<em>مِدِ</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>عِدِ</em></string></test> - <test rtl="True"><string>ل<em>عِدِ</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>جِدِ</em></string></test> - <test rtl="True"><string>ل<em>جِدِ</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>گِدِ</em></string></test> - <test rtl="True"><string>ل<em>گِدِ</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>سِدِ</em></string></test> - <test rtl="True"><string>ل<em>سِدِ</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>طِدِ</em></string></test> - <test rtl="True"><string>ل<em>طِدِ</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>تَرَ</em></string></test> - <test rtl="True"><string>ل<em>تَرَ</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>لَرَ</em></string></test> - <test rtl="True"><string>ل<em>لَرَ</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>بَرَ</em></string></test> - <test rtl="True"><string>ل<em>بَرَ</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>کَرَ</em></string></test> - <test rtl="True"><string>ل<em>کَرَ</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>ھَرَ</em></string></test> - <test rtl="True"><string>ل<em>ھَرَ</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>ہَرَ</em></string></test> - <test rtl="True"><string>ل<em>ہَرَ</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>فَرَ</em></string></test> - <test rtl="True"><string>ل<em>فَرَ</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>صَرَ</em></string></test> - <test rtl="True"><string>ل<em>صَرَ</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>مَرَ</em></string></test> - <test rtl="True"><string>ل<em>مَرَ</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>عَرَ</em></string></test> - <test rtl="True"><string>ل<em>عَرَ</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>جَرَ</em></string></test> - <test rtl="True"><string>ل<em>جَرَ</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>گَرَ</em></string></test> - <test rtl="True"><string>ل<em>گَرَ</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>سَرَ</em></string></test> - <test rtl="True"><string>ل<em>سَرَ</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>طَرَ</em></string></test> - <test rtl="True"><string>ل<em>طَرَ</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>تِرِ</em></string></test> - <test rtl="True"><string>ل<em>تِرِ</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>لِرِ</em></string></test> - <test rtl="True"><string>ل<em>لِرِ</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>بِرِ</em></string></test> - <test rtl="True"><string>ل<em>بِرِ</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>کِرِ</em></string></test> - <test rtl="True"><string>ل<em>کِرِ</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>ھِرِ</em></string></test> - <test rtl="True"><string>ل<em>ھِرِ</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>ہِرِ</em></string></test> - <test rtl="True"><string>ل<em>ہِرِ</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>فِرِ</em></string></test> - <test rtl="True"><string>ل<em>فِرِ</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>صِرِ</em></string></test> - <test rtl="True"><string>ل<em>صِرِ</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>مِرِ</em></string></test> - <test rtl="True"><string>ل<em>مِرِ</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>عِرِ</em></string></test> - <test rtl="True"><string>ل<em>عِرِ</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>جِرِ</em></string></test> - <test rtl="True"><string>ل<em>جِرِ</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>گِرِ</em></string></test> - <test rtl="True"><string>ل<em>گِرِ</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>سِرِ</em></string></test> - <test rtl="True"><string>ل<em>سِرِ</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>طِرِ</em></string></test> - <test rtl="True"><string>ل<em>طِرِ</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>تَسَ</em></string></test> - <test rtl="True"><string>ل<em>تَسَ</em></string></test> - <test rtl="True"><string><em>تَسَ</em>ف</string></test> - <test rtl="True"><string>ل<em>تَسَ</em>ف</string></test> - </testgroup> - <testgroup label="lam + zabar + seen + zabar"> - <test rtl="True"><string><em>لَسَ</em></string></test> - <test rtl="True"><string>ل<em>لَسَ</em></string></test> - <test rtl="True"><string><em>لَسَ</em>ف</string></test> - <test rtl="True"><string>ل<em>لَسَ</em>ف</string></test> - </testgroup> - <testgroup label="beh + zabar + seen + zabar"> - <test rtl="True"><string><em>بَسَ</em></string></test> - <test rtl="True"><string>ل<em>بَسَ</em></string></test> - <test rtl="True"><string><em>بَسَ</em>ف</string></test> - <test rtl="True"><string>ل<em>بَسَ</em>ف</string></test> - </testgroup> - <testgroup label="kaf + zabar + seen + zabar"> - <test rtl="True"><string><em>کَسَ</em></string></test> - <test rtl="True"><string>ل<em>کَسَ</em></string></test> - <test rtl="True"><string><em>کَسَ</em>ف</string></test> - <test rtl="True"><string>ل<em>کَسَ</em>ف</string></test> - </testgroup> - <testgroup label="hehDo + zabar + seen + zabar"> - <test rtl="True"><string><em>ھَسَ</em></string></test> - <test rtl="True"><string>ل<em>ھَسَ</em></string></test> - <test rtl="True"><string><em>ھَسَ</em>ف</string></test> - <test rtl="True"><string>ل<em>ھَسَ</em>ف</string></test> - </testgroup> - <testgroup label="hehGoal + zabar + seen + zabar"> - <test rtl="True"><string><em>ہَسَ</em></string></test> - <test rtl="True"><string>ل<em>ہَسَ</em></string></test> - <test rtl="True"><string><em>ہَسَ</em>ف</string></test> - <test rtl="True"><string>ل<em>ہَسَ</em>ف</string></test> - </testgroup> - <testgroup label="feh + zabar + seen + zabar"> - <test rtl="True"><string><em>فَسَ</em></string></test> - <test rtl="True"><string>ل<em>فَسَ</em></string></test> - <test rtl="True"><string><em>فَسَ</em>ف</string></test> - <test rtl="True"><string>ل<em>فَسَ</em>ف</string></test> - </testgroup> - <testgroup label="sad + zabar + seen + zabar"> - <test rtl="True"><string><em>صَسَ</em></string></test> - <test rtl="True"><string>ل<em>صَسَ</em></string></test> - <test rtl="True"><string><em>صَسَ</em>ف</string></test> - <test rtl="True"><string>ل<em>صَسَ</em>ف</string></test> - </testgroup> - <testgroup label="meem + zabar + seen + zabar"> - <test rtl="True"><string><em>مَسَ</em></string></test> - <test rtl="True"><string>ل<em>مَسَ</em></string></test> - <test rtl="True"><string><em>مَسَ</em>ف</string></test> - <test rtl="True"><string>ل<em>مَسَ</em>ف</string></test> - </testgroup> - <testgroup label="ain + zabar + seen + zabar"> - <test rtl="True"><string><em>عَسَ</em></string></test> - <test rtl="True"><string>ل<em>عَسَ</em></string></test> - <test rtl="True"><string><em>عَسَ</em>ف</string></test> - <test rtl="True"><string>ل<em>عَسَ</em>ف</string></test> - </testgroup> - <testgroup label="jeem + zabar + seen + zabar"> - <test rtl="True"><string><em>جَسَ</em></string></test> - <test rtl="True"><string>ل<em>جَسَ</em></string></test> - <test rtl="True"><string><em>جَسَ</em>ف</string></test> - <test rtl="True"><string>ل<em>جَسَ</em>ف</string></test> - </testgroup> - <testgroup label="gaf + zabar + seen + zabar"> - <test rtl="True"><string><em>گَسَ</em></string></test> - <test rtl="True"><string>ل<em>گَسَ</em></string></test> - <test rtl="True"><string><em>گَسَ</em>ف</string></test> - <test rtl="True"><string>ل<em>گَسَ</em>ف</string></test> - </testgroup> - <testgroup label="seen + zabar + seen + zabar"> - <test rtl="True"><string><em>سَسَ</em></string></test> - <test rtl="True"><string>ل<em>سَسَ</em></string></test> - <test rtl="True"><string><em>سَسَ</em>ف</string></test> - <test rtl="True"><string>ل<em>سَسَ</em>ف</string></test> - </testgroup> - <testgroup label="tah + zabar + seen + zabar"> - <test rtl="True"><string><em>طَسَ</em></string></test> - <test rtl="True"><string>ل<em>طَسَ</em></string></test> - <test rtl="True"><string><em>طَسَ</em>ف</string></test> - <test rtl="True"><string>ل<em>طَسَ</em>ف</string></test> - </testgroup> - </testgroup> - <testgroup label="Seen form sequences with Zair"> - <testgroup label="teh + zair + seen + zair"> - <test rtl="True"><string><em>تِسِ</em></string></test> - <test rtl="True"><string>ل<em>تِسِ</em></string></test> - <test rtl="True"><string><em>تِسِ</em>ف</string></test> - <test rtl="True"><string>ل<em>تِسِ</em>ف</string></test> - </testgroup> - <testgroup label="lam + zair + seen + zair"> - <test rtl="True"><string><em>لِسِ</em></string></test> - <test rtl="True"><string>ل<em>لِسِ</em></string></test> - <test rtl="True"><string><em>لِسِ</em>ف</string></test> - <test rtl="True"><string>ل<em>لِسِ</em>ف</string></test> - </testgroup> - <testgroup label="beh + zair + seen + zair"> - <test rtl="True"><string><em>بِسِ</em></string></test> - <test rtl="True"><string>ل<em>بِسِ</em></string></test> - <test rtl="True"><string><em>بِسِ</em>ف</string></test> - <test rtl="True"><string>ل<em>بِسِ</em>ف</string></test> - </testgroup> - <testgroup label="kaf + zair + seen + zair"> - <test rtl="True"><string><em>کِسِ</em></string></test> - <test rtl="True"><string>ل<em>کِسِ</em></string></test> - <test rtl="True"><string><em>کِسِ</em>ف</string></test> - <test rtl="True"><string>ل<em>کِسِ</em>ف</string></test> - </testgroup> - <testgroup label="hehDo + zair + seen + zair"> - <test rtl="True"><string><em>ھِسِ</em></string></test> - <test rtl="True"><string>ل<em>ھِسِ</em></string></test> - <test rtl="True"><string><em>ھِسِ</em>ف</string></test> - <test rtl="True"><string>ل<em>ھِسِ</em>ف</string></test> - </testgroup> - <testgroup label="hehGoal + zair + seen + zair"> - <test rtl="True"><string><em>ہِسِ</em></string></test> - <test rtl="True"><string>ل<em>ہِسِ</em></string></test> - <test rtl="True"><string><em>ہِسِ</em>ف</string></test> - <test rtl="True"><string>ل<em>ہِسِ</em>ف</string></test> - </testgroup> - <testgroup label="feh + zair + seen + zair"> - <test rtl="True"><string><em>فِسِ</em></string></test> - <test rtl="True"><string>ل<em>فِسِ</em></string></test> - <test rtl="True"><string><em>فِسِ</em>ف</string></test> - <test rtl="True"><string>ل<em>فِسِ</em>ف</string></test> - </testgroup> - <testgroup label="sad + zair + seen + zair"> - <test rtl="True"><string><em>صِسِ</em></string></test> - <test rtl="True"><string>ل<em>صِسِ</em></string></test> - <test rtl="True"><string><em>صِسِ</em>ف</string></test> - <test rtl="True"><string>ل<em>صِسِ</em>ف</string></test> - </testgroup> - <testgroup label="meem + zair + seen + zair"> - <test rtl="True"><string><em>مِسِ</em></string></test> - <test rtl="True"><string>ل<em>مِسِ</em></string></test> - <test rtl="True"><string><em>مِسِ</em>ف</string></test> - <test rtl="True"><string>ل<em>مِسِ</em>ف</string></test> - </testgroup> - <testgroup label="ain + zair + seen + zair"> - <test rtl="True"><string><em>عِسِ</em></string></test> - <test rtl="True"><string>ل<em>عِسِ</em></string></test> - <test rtl="True"><string><em>عِسِ</em>ف</string></test> - <test rtl="True"><string>ل<em>عِسِ</em>ف</string></test> - </testgroup> - <testgroup label="jeem + zair + seen + zair"> - <test rtl="True"><string><em>جِسِ</em></string></test> - <test rtl="True"><string>ل<em>جِسِ</em></string></test> - <test rtl="True"><string><em>جِسِ</em>ف</string></test> - <test rtl="True"><string>ل<em>جِسِ</em>ف</string></test> - </testgroup> - <testgroup label="gaf + zair + seen + zair"> - <test rtl="True"><string><em>گِسِ</em></string></test> - <test rtl="True"><string>ل<em>گِسِ</em></string></test> - <test rtl="True"><string><em>گِسِ</em>ف</string></test> - <test rtl="True"><string>ل<em>گِسِ</em>ف</string></test> - </testgroup> - <testgroup label="seen + zair + seen + zair"> - <test rtl="True"><string><em>سِسِ</em></string></test> - <test rtl="True"><string>ل<em>سِسِ</em></string></test> - <test rtl="True"><string><em>سِسِ</em>ف</string></test> - <test rtl="True"><string>ل<em>سِسِ</em>ف</string></test> - </testgroup> - <testgroup label="tah + zair + seen + zair"> - <test rtl="True"><string><em>طِسِ</em></string></test> - <test rtl="True"><string>ل<em>طِسِ</em></string></test> - <test rtl="True"><string><em>طِسِ</em>ف</string></test> - <test rtl="True"><string>ل<em>طِسِ</em>ف</string></test> - </testgroup> - </testgroup> - <testgroup label="Sad form sequences with Zabar"> - <testgroup label="teh + zabar + sad + zabar"> - <test rtl="True"><string><em>تَصَ</em></string></test> - <test rtl="True"><string>ل<em>تَصَ</em></string></test> - <test rtl="True"><string><em>تَصَ</em>ف</string></test> - <test rtl="True"><string>ل<em>تَصَ</em>ف</string></test> - </testgroup> - <testgroup label="lam + zabar + sad + zabar"> - <test rtl="True"><string><em>لَصَ</em></string></test> - <test rtl="True"><string>ل<em>لَصَ</em></string></test> - <test rtl="True"><string><em>لَصَ</em>ف</string></test> - <test rtl="True"><string>ل<em>لَصَ</em>ف</string></test> - </testgroup> - <testgroup label="beh + zabar + sad + zabar"> - <test rtl="True"><string><em>بَصَ</em></string></test> - <test rtl="True"><string>ل<em>بَصَ</em></string></test> - <test rtl="True"><string><em>بَصَ</em>ف</string></test> - <test rtl="True"><string>ل<em>بَصَ</em>ف</string></test> - </testgroup> - <testgroup label="kaf + zabar + sad + zabar"> - <test rtl="True"><string><em>کَصَ</em></string></test> - <test rtl="True"><string>ل<em>کَصَ</em></string></test> - <test rtl="True"><string><em>کَصَ</em>ف</string></test> - <test rtl="True"><string>ل<em>کَصَ</em>ف</string></test> - </testgroup> - <testgroup label="hehDo + zabar + sad + zabar"> - <test rtl="True"><string><em>ھَصَ</em></string></test> - <test rtl="True"><string>ل<em>ھَصَ</em></string></test> - <test rtl="True"><string><em>ھَصَ</em>ف</string></test> - <test rtl="True"><string>ل<em>ھَصَ</em>ف</string></test> - </testgroup> - <testgroup label="hehGoal + zabar + sad + zabar"> - <test rtl="True"><string><em>ہَصَ</em></string></test> - <test rtl="True"><string>ل<em>ہَصَ</em></string></test> - <test rtl="True"><string><em>ہَصَ</em>ف</string></test> - <test rtl="True"><string>ل<em>ہَصَ</em>ف</string></test> - </testgroup> - <testgroup label="feh + zabar + sad + zabar"> - <test rtl="True"><string><em>فَصَ</em></string></test> - <test rtl="True"><string>ل<em>فَصَ</em></string></test> - <test rtl="True"><string><em>فَصَ</em>ف</string></test> - <test rtl="True"><string>ل<em>فَصَ</em>ف</string></test> - </testgroup> - <testgroup label="sad + zabar + sad + zabar"> - <test rtl="True"><string><em>صَصَ</em></string></test> - <test rtl="True"><string>ل<em>صَصَ</em></string></test> - <test rtl="True"><string><em>صَصَ</em>ف</string></test> - <test rtl="True"><string>ل<em>صَصَ</em>ف</string></test> - </testgroup> - <testgroup label="meem + zabar + sad + zabar"> - <test rtl="True"><string><em>مَصَ</em></string></test> - <test rtl="True"><string>ل<em>مَصَ</em></string></test> - <test rtl="True"><string><em>مَصَ</em>ف</string></test> - <test rtl="True"><string>ل<em>مَصَ</em>ف</string></test> - </testgroup> - <testgroup label="ain + zabar + sad + zabar"> - <test rtl="True"><string><em>عَصَ</em></string></test> - <test rtl="True"><string>ل<em>عَصَ</em></string></test> - <test rtl="True"><string><em>عَصَ</em>ف</string></test> - <test rtl="True"><string>ل<em>عَصَ</em>ف</string></test> - </testgroup> - <testgroup label="jeem + zabar + sad + zabar"> - <test rtl="True"><string><em>جَصَ</em></string></test> - <test rtl="True"><string>ل<em>جَصَ</em></string></test> - <test rtl="True"><string><em>جَصَ</em>ف</string></test> - <test rtl="True"><string>ل<em>جَصَ</em>ف</string></test> - </testgroup> - <testgroup label="gaf + zabar + sad + zabar"> - <test rtl="True"><string><em>گَصَ</em></string></test> - <test rtl="True"><string>ل<em>گَصَ</em></string></test> - <test rtl="True"><string><em>گَصَ</em>ف</string></test> - <test rtl="True"><string>ل<em>گَصَ</em>ف</string></test> - </testgroup> - <testgroup label="seen + zabar + sad + zabar"> - <test rtl="True"><string><em>سَصَ</em></string></test> - <test rtl="True"><string>ل<em>سَصَ</em></string></test> - <test rtl="True"><string><em>سَصَ</em>ف</string></test> - <test rtl="True"><string>ل<em>سَصَ</em>ف</string></test> - </testgroup> - <testgroup label="tah + zabar + sad + zabar"> - <test rtl="True"><string><em>طَصَ</em></string></test> - <test rtl="True"><string>ل<em>طَصَ</em></string></test> - <test rtl="True"><string><em>طَصَ</em>ف</string></test> - <test rtl="True"><string>ل<em>طَصَ</em>ف</string></test> - </testgroup> - </testgroup> - <testgroup label="Sad form sequences with Zair"> - <testgroup label="teh + zair + sad + zair"> - <test rtl="True"><string><em>تِصِ</em></string></test> - <test rtl="True"><string>ل<em>تِصِ</em></string></test> - <test rtl="True"><string><em>تِصِ</em>ف</string></test> - <test rtl="True"><string>ل<em>تِصِ</em>ف</string></test> - </testgroup> - <testgroup label="lam + zair + sad + zair"> - <test rtl="True"><string><em>لِصِ</em></string></test> - <test rtl="True"><string>ل<em>لِصِ</em></string></test> - <test rtl="True"><string><em>لِصِ</em>ف</string></test> - <test rtl="True"><string>ل<em>لِصِ</em>ف</string></test> - </testgroup> - <testgroup label="beh + zair + sad + zair"> - <test rtl="True"><string><em>بِصِ</em></string></test> - <test rtl="True"><string>ل<em>بِصِ</em></string></test> - <test rtl="True"><string><em>بِصِ</em>ف</string></test> - <test rtl="True"><string>ل<em>بِصِ</em>ف</string></test> - </testgroup> - <testgroup label="kaf + zair + sad + zair"> - <test rtl="True"><string><em>کِصِ</em></string></test> - <test rtl="True"><string>ل<em>کِصِ</em></string></test> - <test rtl="True"><string><em>کِصِ</em>ف</string></test> - <test rtl="True"><string>ل<em>کِصِ</em>ف</string></test> - </testgroup> - <testgroup label="hehDo + zair + sad + zair"> - <test rtl="True"><string><em>ھِصِ</em></string></test> - <test rtl="True"><string>ل<em>ھِصِ</em></string></test> - <test rtl="True"><string><em>ھِصِ</em>ف</string></test> - <test rtl="True"><string>ل<em>ھِصِ</em>ف</string></test> - </testgroup> - <testgroup label="hehGoal + zair + sad + zair"> - <test rtl="True"><string><em>ہِصِ</em></string></test> - <test rtl="True"><string>ل<em>ہِصِ</em></string></test> - <test rtl="True"><string><em>ہِصِ</em>ف</string></test> - <test rtl="True"><string>ل<em>ہِصِ</em>ف</string></test> - </testgroup> - <testgroup label="feh + zair + sad + zair"> - <test rtl="True"><string><em>فِصِ</em></string></test> - <test rtl="True"><string>ل<em>فِصِ</em></string></test> - <test rtl="True"><string><em>فِصِ</em>ف</string></test> - <test rtl="True"><string>ل<em>فِصِ</em>ف</string></test> - </testgroup> - <testgroup label="sad + zair + sad + zair"> - <test rtl="True"><string><em>صِصِ</em></string></test> - <test rtl="True"><string>ل<em>صِصِ</em></string></test> - <test rtl="True"><string><em>صِصِ</em>ف</string></test> - <test rtl="True"><string>ل<em>صِصِ</em>ف</string></test> - </testgroup> - <testgroup label="meem + zair + sad + zair"> - <test rtl="True"><string><em>مِصِ</em></string></test> - <test rtl="True"><string>ل<em>مِصِ</em></string></test> - <test rtl="True"><string><em>مِصِ</em>ف</string></test> - <test rtl="True"><string>ل<em>مِصِ</em>ف</string></test> - </testgroup> - <testgroup label="ain + zair + sad + zair"> - <test rtl="True"><string><em>عِصِ</em></string></test> - <test rtl="True"><string>ل<em>عِصِ</em></string></test> - <test rtl="True"><string><em>عِصِ</em>ف</string></test> - <test rtl="True"><string>ل<em>عِصِ</em>ف</string></test> - </testgroup> - <testgroup label="jeem + zair + sad + zair"> - <test rtl="True"><string><em>جِصِ</em></string></test> - <test rtl="True"><string>ل<em>جِصِ</em></string></test> - <test rtl="True"><string><em>جِصِ</em>ف</string></test> - <test rtl="True"><string>ل<em>جِصِ</em>ف</string></test> - </testgroup> - <testgroup label="gaf + zair + sad + zair"> - <test rtl="True"><string><em>گِصِ</em></string></test> - <test rtl="True"><string>ل<em>گِصِ</em></string></test> - <test rtl="True"><string><em>گِصِ</em>ف</string></test> - <test rtl="True"><string>ل<em>گِصِ</em>ف</string></test> - </testgroup> - <testgroup label="seen + zair + sad + zair"> - <test rtl="True"><string><em>سِصِ</em></string></test> - <test rtl="True"><string>ل<em>سِصِ</em></string></test> - <test rtl="True"><string><em>سِصِ</em>ف</string></test> - <test rtl="True"><string>ل<em>سِصِ</em>ف</string></test> - </testgroup> - <testgroup label="tah + zair + sad + zair"> - <test rtl="True"><string><em>طِصِ</em></string></test> - <test rtl="True"><string>ل<em>طِصِ</em></string></test> - <test rtl="True"><string><em>طِصِ</em>ف</string></test> - <test rtl="True"><string>ل<em>طِصِ</em>ف</string></test> - </testgroup> - </testgroup> - <testgroup label="Tah form sequences with Zabar"> - <testgroup label="teh + zabar + tah + zabar"> - <test rtl="True"><string><em>تَطَ</em></string></test> - <test rtl="True"><string>ل<em>تَطَ</em></string></test> - <test rtl="True"><string><em>تَطَ</em>ف</string></test> - <test rtl="True"><string>ل<em>تَطَ</em>ف</string></test> - </testgroup> - <testgroup label="lam + zabar + tah + zabar"> - <test rtl="True"><string><em>لَطَ</em></string></test> - <test rtl="True"><string>ل<em>لَطَ</em></string></test> - <test rtl="True"><string><em>لَطَ</em>ف</string></test> - <test rtl="True"><string>ل<em>لَطَ</em>ف</string></test> - </testgroup> - <testgroup label="beh + zabar + tah + zabar"> - <test rtl="True"><string><em>بَطَ</em></string></test> - <test rtl="True"><string>ل<em>بَطَ</em></string></test> - <test rtl="True"><string><em>بَطَ</em>ف</string></test> - <test rtl="True"><string>ل<em>بَطَ</em>ف</string></test> - </testgroup> - <testgroup label="kaf + zabar + tah + zabar"> - <test rtl="True"><string><em>کَطَ</em></string></test> - <test rtl="True"><string>ل<em>کَطَ</em></string></test> - <test rtl="True"><string><em>کَطَ</em>ف</string></test> - <test rtl="True"><string>ل<em>کَطَ</em>ف</string></test> - </testgroup> - <testgroup label="hehDo + zabar + tah + zabar"> - <test rtl="True"><string><em>ھَطَ</em></string></test> - <test rtl="True"><string>ل<em>ھَطَ</em></string></test> - <test rtl="True"><string><em>ھَطَ</em>ف</string></test> - <test rtl="True"><string>ل<em>ھَطَ</em>ف</string></test> - </testgroup> - <testgroup label="hehGoal + zabar + tah + zabar"> - <test rtl="True"><string><em>ہَطَ</em></string></test> - <test rtl="True"><string>ل<em>ہَطَ</em></string></test> - <test rtl="True"><string><em>ہَطَ</em>ف</string></test> - <test rtl="True"><string>ل<em>ہَطَ</em>ف</string></test> - </testgroup> - <testgroup label="feh + zabar + tah + zabar"> - <test rtl="True"><string><em>فَطَ</em></string></test> - <test rtl="True"><string>ل<em>فَطَ</em></string></test> - <test rtl="True"><string><em>فَطَ</em>ف</string></test> - <test rtl="True"><string>ل<em>فَطَ</em>ف</string></test> - </testgroup> - <testgroup label="sad + zabar + tah + zabar"> - <test rtl="True"><string><em>صَطَ</em></string></test> - <test rtl="True"><string>ل<em>صَطَ</em></string></test> - <test rtl="True"><string><em>صَطَ</em>ف</string></test> - <test rtl="True"><string>ل<em>صَطَ</em>ف</string></test> - </testgroup> - <testgroup label="meem + zabar + tah + zabar"> - <test rtl="True"><string><em>مَطَ</em></string></test> - <test rtl="True"><string>ل<em>مَطَ</em></string></test> - <test rtl="True"><string><em>مَطَ</em>ف</string></test> - <test rtl="True"><string>ل<em>مَطَ</em>ف</string></test> - </testgroup> - <testgroup label="ain + zabar + tah + zabar"> - <test rtl="True"><string><em>عَطَ</em></string></test> - <test rtl="True"><string>ل<em>عَطَ</em></string></test> - <test rtl="True"><string><em>عَطَ</em>ف</string></test> - <test rtl="True"><string>ل<em>عَطَ</em>ف</string></test> - </testgroup> - <testgroup label="jeem + zabar + tah + zabar"> - <test rtl="True"><string><em>جَطَ</em></string></test> - <test rtl="True"><string>ل<em>جَطَ</em></string></test> - <test rtl="True"><string><em>جَطَ</em>ف</string></test> - <test rtl="True"><string>ل<em>جَطَ</em>ف</string></test> - </testgroup> - <testgroup label="gaf + zabar + tah + zabar"> - <test rtl="True"><string><em>گَطَ</em></string></test> - <test rtl="True"><string>ل<em>گَطَ</em></string></test> - <test rtl="True"><string><em>گَطَ</em>ف</string></test> - <test rtl="True"><string>ل<em>گَطَ</em>ف</string></test> - </testgroup> - <testgroup label="seen + zabar + tah + zabar"> - <test rtl="True"><string><em>سَطَ</em></string></test> - <test rtl="True"><string>ل<em>سَطَ</em></string></test> - <test rtl="True"><string><em>سَطَ</em>ف</string></test> - <test rtl="True"><string>ل<em>سَطَ</em>ف</string></test> - </testgroup> - <testgroup label="tah + zabar + tah + zabar"> - <test rtl="True"><string><em>طَطَ</em></string></test> - <test rtl="True"><string>ل<em>طَطَ</em></string></test> - <test rtl="True"><string><em>طَطَ</em>ف</string></test> - <test rtl="True"><string>ل<em>طَطَ</em>ف</string></test> - </testgroup> - </testgroup> - <testgroup label="Tah form sequences with Zair"> - <testgroup label="teh + zair + tah + zair"> - <test rtl="True"><string><em>تِطِ</em></string></test> - <test rtl="True"><string>ل<em>تِطِ</em></string></test> - <test rtl="True"><string><em>تِطِ</em>ف</string></test> - <test rtl="True"><string>ل<em>تِطِ</em>ف</string></test> - </testgroup> - <testgroup label="lam + zair + tah + zair"> - <test rtl="True"><string><em>لِطِ</em></string></test> - <test rtl="True"><string>ل<em>لِطِ</em></string></test> - <test rtl="True"><string><em>لِطِ</em>ف</string></test> - <test rtl="True"><string>ل<em>لِطِ</em>ف</string></test> - </testgroup> - <testgroup label="beh + zair + tah + zair"> - <test rtl="True"><string><em>بِطِ</em></string></test> - <test rtl="True"><string>ل<em>بِطِ</em></string></test> - <test rtl="True"><string><em>بِطِ</em>ف</string></test> - <test rtl="True"><string>ل<em>بِطِ</em>ف</string></test> - </testgroup> - <testgroup label="kaf + zair + tah + zair"> - <test rtl="True"><string><em>کِطِ</em></string></test> - <test rtl="True"><string>ل<em>کِطِ</em></string></test> - <test rtl="True"><string><em>کِطِ</em>ف</string></test> - <test rtl="True"><string>ل<em>کِطِ</em>ف</string></test> - </testgroup> - <testgroup label="hehDo + zair + tah + zair"> - <test rtl="True"><string><em>ھِطِ</em></string></test> - <test rtl="True"><string>ل<em>ھِطِ</em></string></test> - <test rtl="True"><string><em>ھِطِ</em>ف</string></test> - <test rtl="True"><string>ل<em>ھِطِ</em>ف</string></test> - </testgroup> - <testgroup label="hehGoal + zair + tah + zair"> - <test rtl="True"><string><em>ہِطِ</em></string></test> - <test rtl="True"><string>ل<em>ہِطِ</em></string></test> - <test rtl="True"><string><em>ہِطِ</em>ف</string></test> - <test rtl="True"><string>ل<em>ہِطِ</em>ف</string></test> - </testgroup> - <testgroup label="feh + zair + tah + zair"> - <test rtl="True"><string><em>فِطِ</em></string></test> - <test rtl="True"><string>ل<em>فِطِ</em></string></test> - <test rtl="True"><string><em>فِطِ</em>ف</string></test> - <test rtl="True"><string>ل<em>فِطِ</em>ف</string></test> - </testgroup> - <testgroup label="sad + zair + tah + zair"> - <test rtl="True"><string><em>صِطِ</em></string></test> - <test rtl="True"><string>ل<em>صِطِ</em></string></test> - <test rtl="True"><string><em>صِطِ</em>ف</string></test> - <test rtl="True"><string>ل<em>صِطِ</em>ف</string></test> - </testgroup> - <testgroup label="meem + zair + tah + zair"> - <test rtl="True"><string><em>مِطِ</em></string></test> - <test rtl="True"><string>ل<em>مِطِ</em></string></test> - <test rtl="True"><string><em>مِطِ</em>ف</string></test> - <test rtl="True"><string>ل<em>مِطِ</em>ف</string></test> - </testgroup> - <testgroup label="ain + zair + tah + zair"> - <test rtl="True"><string><em>عِطِ</em></string></test> - <test rtl="True"><string>ل<em>عِطِ</em></string></test> - <test rtl="True"><string><em>عِطِ</em>ف</string></test> - <test rtl="True"><string>ل<em>عِطِ</em>ف</string></test> - </testgroup> - <testgroup label="jeem + zair + tah + zair"> - <test rtl="True"><string><em>جِطِ</em></string></test> - <test rtl="True"><string>ل<em>جِطِ</em></string></test> - <test rtl="True"><string><em>جِطِ</em>ف</string></test> - <test rtl="True"><string>ل<em>جِطِ</em>ف</string></test> - </testgroup> - <testgroup label="gaf + zair + tah + zair"> - <test rtl="True"><string><em>گِطِ</em></string></test> - <test rtl="True"><string>ل<em>گِطِ</em></string></test> - <test rtl="True"><string><em>گِطِ</em>ف</string></test> - <test rtl="True"><string>ل<em>گِطِ</em>ف</string></test> - </testgroup> - <testgroup label="seen + zair + tah + zair"> - <test rtl="True"><string><em>سِطِ</em></string></test> - <test rtl="True"><string>ل<em>سِطِ</em></string></test> - <test rtl="True"><string><em>سِطِ</em>ف</string></test> - <test rtl="True"><string>ل<em>سِطِ</em>ف</string></test> - </testgroup> - <testgroup label="tah + zair + tah + zair"> - <test rtl="True"><string><em>طِطِ</em></string></test> - <test rtl="True"><string>ل<em>طِطِ</em></string></test> - <test rtl="True"><string><em>طِطِ</em>ف</string></test> - <test rtl="True"><string>ل<em>طِطِ</em>ف</string></test> - </testgroup> - </testgroup> - <testgroup label="Ain form sequences with Zabar"> - <testgroup label="teh + zabar + ain + zabar"> - <test rtl="True"><string><em>تَعَ</em></string></test> - <test rtl="True"><string>ل<em>تَعَ</em></string></test> - <test rtl="True"><string><em>تَعَ</em>ف</string></test> - <test rtl="True"><string>ل<em>تَعَ</em>ف</string></test> - </testgroup> - <testgroup label="lam + zabar + ain + zabar"> - <test rtl="True"><string><em>لَعَ</em></string></test> - <test rtl="True"><string>ل<em>لَعَ</em></string></test> - <test rtl="True"><string><em>لَعَ</em>ف</string></test> - <test rtl="True"><string>ل<em>لَعَ</em>ف</string></test> - </testgroup> - <testgroup label="beh + zabar + ain + zabar"> - <test rtl="True"><string><em>بَعَ</em></string></test> - <test rtl="True"><string>ل<em>بَعَ</em></string></test> - <test rtl="True"><string><em>بَعَ</em>ف</string></test> - <test rtl="True"><string>ل<em>بَعَ</em>ف</string></test> - </testgroup> - <testgroup label="kaf + zabar + ain + zabar"> - <test rtl="True"><string><em>کَعَ</em></string></test> - <test rtl="True"><string>ل<em>کَعَ</em></string></test> - <test rtl="True"><string><em>کَعَ</em>ف</string></test> - <test rtl="True"><string>ل<em>کَعَ</em>ف</string></test> - </testgroup> - <testgroup label="hehDo + zabar + ain + zabar"> - <test rtl="True"><string><em>ھَعَ</em></string></test> - <test rtl="True"><string>ل<em>ھَعَ</em></string></test> - <test rtl="True"><string><em>ھَعَ</em>ف</string></test> - <test rtl="True"><string>ل<em>ھَعَ</em>ف</string></test> - </testgroup> - <testgroup label="hehGoal + zabar + ain + zabar"> - <test rtl="True"><string><em>ہَعَ</em></string></test> - <test rtl="True"><string>ل<em>ہَعَ</em></string></test> - <test rtl="True"><string><em>ہَعَ</em>ف</string></test> - <test rtl="True"><string>ل<em>ہَعَ</em>ف</string></test> - </testgroup> - <testgroup label="feh + zabar + ain + zabar"> - <test rtl="True"><string><em>فَعَ</em></string></test> - <test rtl="True"><string>ل<em>فَعَ</em></string></test> - <test rtl="True"><string><em>فَعَ</em>ف</string></test> - <test rtl="True"><string>ل<em>فَعَ</em>ف</string></test> - </testgroup> - <testgroup label="sad + zabar + ain + zabar"> - <test rtl="True"><string><em>صَعَ</em></string></test> - <test rtl="True"><string>ل<em>صَعَ</em></string></test> - <test rtl="True"><string><em>صَعَ</em>ف</string></test> - <test rtl="True"><string>ل<em>صَعَ</em>ف</string></test> - </testgroup> - <testgroup label="meem + zabar + ain + zabar"> - <test rtl="True"><string><em>مَعَ</em></string></test> - <test rtl="True"><string>ل<em>مَعَ</em></string></test> - <test rtl="True"><string><em>مَعَ</em>ف</string></test> - <test rtl="True"><string>ل<em>مَعَ</em>ف</string></test> - </testgroup> - <testgroup label="ain + zabar + ain + zabar"> - <test rtl="True"><string><em>عَعَ</em></string></test> - <test rtl="True"><string>ل<em>عَعَ</em></string></test> - <test rtl="True"><string><em>عَعَ</em>ف</string></test> - <test rtl="True"><string>ل<em>عَعَ</em>ف</string></test> - </testgroup> - <testgroup label="jeem + zabar + ain + zabar"> - <test rtl="True"><string><em>جَعَ</em></string></test> - <test rtl="True"><string>ل<em>جَعَ</em></string></test> - <test rtl="True"><string><em>جَعَ</em>ف</string></test> - <test rtl="True"><string>ل<em>جَعَ</em>ف</string></test> - </testgroup> - <testgroup label="gaf + zabar + ain + zabar"> - <test rtl="True"><string><em>گَعَ</em></string></test> - <test rtl="True"><string>ل<em>گَعَ</em></string></test> - <test rtl="True"><string><em>گَعَ</em>ف</string></test> - <test rtl="True"><string>ل<em>گَعَ</em>ف</string></test> - </testgroup> - <testgroup label="seen + zabar + ain + zabar"> - <test rtl="True"><string><em>سَعَ</em></string></test> - <test rtl="True"><string>ل<em>سَعَ</em></string></test> - <test rtl="True"><string><em>سَعَ</em>ف</string></test> - <test rtl="True"><string>ل<em>سَعَ</em>ف</string></test> - </testgroup> - <testgroup label="tah + zabar + ain + zabar"> - <test rtl="True"><string><em>طَعَ</em></string></test> - <test rtl="True"><string>ل<em>طَعَ</em></string></test> - <test rtl="True"><string><em>طَعَ</em>ف</string></test> - <test rtl="True"><string>ل<em>طَعَ</em>ف</string></test> - </testgroup> - </testgroup> - <testgroup label="Ain form sequences with Zair"> - <testgroup label="teh + zair + ain + zair"> - <test rtl="True"><string><em>تِعِ</em></string></test> - <test rtl="True"><string>ل<em>تِعِ</em></string></test> - <test rtl="True"><string><em>تِعِ</em>ف</string></test> - <test rtl="True"><string>ل<em>تِعِ</em>ف</string></test> - </testgroup> - <testgroup label="lam + zair + ain + zair"> - <test rtl="True"><string><em>لِعِ</em></string></test> - <test rtl="True"><string>ل<em>لِعِ</em></string></test> - <test rtl="True"><string><em>لِعِ</em>ف</string></test> - <test rtl="True"><string>ل<em>لِعِ</em>ف</string></test> - </testgroup> - <testgroup label="beh + zair + ain + zair"> - <test rtl="True"><string><em>بِعِ</em></string></test> - <test rtl="True"><string>ل<em>بِعِ</em></string></test> - <test rtl="True"><string><em>بِعِ</em>ف</string></test> - <test rtl="True"><string>ل<em>بِعِ</em>ف</string></test> - </testgroup> - <testgroup label="kaf + zair + ain + zair"> - <test rtl="True"><string><em>کِعِ</em></string></test> - <test rtl="True"><string>ل<em>کِعِ</em></string></test> - <test rtl="True"><string><em>کِعِ</em>ف</string></test> - <test rtl="True"><string>ل<em>کِعِ</em>ف</string></test> - </testgroup> - <testgroup label="hehDo + zair + ain + zair"> - <test rtl="True"><string><em>ھِعِ</em></string></test> - <test rtl="True"><string>ل<em>ھِعِ</em></string></test> - <test rtl="True"><string><em>ھِعِ</em>ف</string></test> - <test rtl="True"><string>ل<em>ھِعِ</em>ف</string></test> - </testgroup> - <testgroup label="hehGoal + zair + ain + zair"> - <test rtl="True"><string><em>ہِعِ</em></string></test> - <test rtl="True"><string>ل<em>ہِعِ</em></string></test> - <test rtl="True"><string><em>ہِعِ</em>ف</string></test> - <test rtl="True"><string>ل<em>ہِعِ</em>ف</string></test> - </testgroup> - <testgroup label="feh + zair + ain + zair"> - <test rtl="True"><string><em>فِعِ</em></string></test> - <test rtl="True"><string>ل<em>فِعِ</em></string></test> - <test rtl="True"><string><em>فِعِ</em>ف</string></test> - <test rtl="True"><string>ل<em>فِعِ</em>ف</string></test> - </testgroup> - <testgroup label="sad + zair + ain + zair"> - <test rtl="True"><string><em>صِعِ</em></string></test> - <test rtl="True"><string>ل<em>صِعِ</em></string></test> - <test rtl="True"><string><em>صِعِ</em>ف</string></test> - <test rtl="True"><string>ل<em>صِعِ</em>ف</string></test> - </testgroup> - <testgroup label="meem + zair + ain + zair"> - <test rtl="True"><string><em>مِعِ</em></string></test> - <test rtl="True"><string>ل<em>مِعِ</em></string></test> - <test rtl="True"><string><em>مِعِ</em>ف</string></test> - <test rtl="True"><string>ل<em>مِعِ</em>ف</string></test> - </testgroup> - <testgroup label="ain + zair + ain + zair"> - <test rtl="True"><string><em>عِعِ</em></string></test> - <test rtl="True"><string>ل<em>عِعِ</em></string></test> - <test rtl="True"><string><em>عِعِ</em>ف</string></test> - <test rtl="True"><string>ل<em>عِعِ</em>ف</string></test> - </testgroup> - <testgroup label="jeem + zair + ain + zair"> - <test rtl="True"><string><em>جِعِ</em></string></test> - <test rtl="True"><string>ل<em>جِعِ</em></string></test> - <test rtl="True"><string><em>جِعِ</em>ف</string></test> - <test rtl="True"><string>ل<em>جِعِ</em>ف</string></test> - </testgroup> - <testgroup label="gaf + zair + ain + zair"> - <test rtl="True"><string><em>گِعِ</em></string></test> - <test rtl="True"><string>ل<em>گِعِ</em></string></test> - <test rtl="True"><string><em>گِعِ</em>ف</string></test> - <test rtl="True"><string>ل<em>گِعِ</em>ف</string></test> - </testgroup> - <testgroup label="seen + zair + ain + zair"> - <test rtl="True"><string><em>سِعِ</em></string></test> - <test rtl="True"><string>ل<em>سِعِ</em></string></test> - <test rtl="True"><string><em>سِعِ</em>ف</string></test> - <test rtl="True"><string>ل<em>سِعِ</em>ف</string></test> - </testgroup> - <testgroup label="tah + zair + ain + zair"> - <test rtl="True"><string><em>طِعِ</em></string></test> - <test rtl="True"><string>ل<em>طِعِ</em></string></test> - <test rtl="True"><string><em>طِعِ</em>ف</string></test> - <test rtl="True"><string>ل<em>طِعِ</em>ف</string></test> - </testgroup> - </testgroup> - <testgroup label="Feh form sequences with Zabar"> - <testgroup label="teh + zabar + feh + zabar"> - <test rtl="True"><string><em>تَفَ</em></string></test> - <test rtl="True"><string>ل<em>تَفَ</em></string></test> - <test rtl="True"><string><em>تَفَ</em>ف</string></test> - <test rtl="True"><string>ل<em>تَفَ</em>ف</string></test> - </testgroup> - <testgroup label="lam + zabar + feh + zabar"> - <test rtl="True"><string><em>لَفَ</em></string></test> - <test rtl="True"><string>ل<em>لَفَ</em></string></test> - <test rtl="True"><string><em>لَفَ</em>ف</string></test> - <test rtl="True"><string>ل<em>لَفَ</em>ف</string></test> - </testgroup> - <testgroup label="beh + zabar + feh + zabar"> - <test rtl="True"><string><em>بَفَ</em></string></test> - <test rtl="True"><string>ل<em>بَفَ</em></string></test> - <test rtl="True"><string><em>بَفَ</em>ف</string></test> - <test rtl="True"><string>ل<em>بَفَ</em>ف</string></test> - </testgroup> - <testgroup label="kaf + zabar + feh + zabar"> - <test rtl="True"><string><em>کَفَ</em></string></test> - <test rtl="True"><string>ل<em>کَفَ</em></string></test> - <test rtl="True"><string><em>کَفَ</em>ف</string></test> - <test rtl="True"><string>ل<em>کَفَ</em>ف</string></test> - </testgroup> - <testgroup label="hehDo + zabar + feh + zabar"> - <test rtl="True"><string><em>ھَفَ</em></string></test> - <test rtl="True"><string>ل<em>ھَفَ</em></string></test> - <test rtl="True"><string><em>ھَفَ</em>ف</string></test> - <test rtl="True"><string>ل<em>ھَفَ</em>ف</string></test> - </testgroup> - <testgroup label="hehGoal + zabar + feh + zabar"> - <test rtl="True"><string><em>ہَفَ</em></string></test> - <test rtl="True"><string>ل<em>ہَفَ</em></string></test> - <test rtl="True"><string><em>ہَفَ</em>ف</string></test> - <test rtl="True"><string>ل<em>ہَفَ</em>ف</string></test> - </testgroup> - <testgroup label="feh + zabar + feh + zabar"> - <test rtl="True"><string><em>فَفَ</em></string></test> - <test rtl="True"><string>ل<em>فَفَ</em></string></test> - <test rtl="True"><string><em>فَفَ</em>ف</string></test> - <test rtl="True"><string>ل<em>فَفَ</em>ف</string></test> - </testgroup> - <testgroup label="sad + zabar + feh + zabar"> - <test rtl="True"><string><em>صَفَ</em></string></test> - <test rtl="True"><string>ل<em>صَفَ</em></string></test> - <test rtl="True"><string><em>صَفَ</em>ف</string></test> - <test rtl="True"><string>ل<em>صَفَ</em>ف</string></test> - </testgroup> - <testgroup label="meem + zabar + feh + zabar"> - <test rtl="True"><string><em>مَفَ</em></string></test> - <test rtl="True"><string>ل<em>مَفَ</em></string></test> - <test rtl="True"><string><em>مَفَ</em>ف</string></test> - <test rtl="True"><string>ل<em>مَفَ</em>ف</string></test> - </testgroup> - <testgroup label="ain + zabar + feh + zabar"> - <test rtl="True"><string><em>عَفَ</em></string></test> - <test rtl="True"><string>ل<em>عَفَ</em></string></test> - <test rtl="True"><string><em>عَفَ</em>ف</string></test> - <test rtl="True"><string>ل<em>عَفَ</em>ف</string></test> - </testgroup> - <testgroup label="jeem + zabar + feh + zabar"> - <test rtl="True"><string><em>جَفَ</em></string></test> - <test rtl="True"><string>ل<em>جَفَ</em></string></test> - <test rtl="True"><string><em>جَفَ</em>ف</string></test> - <test rtl="True"><string>ل<em>جَفَ</em>ف</string></test> - </testgroup> - <testgroup label="gaf + zabar + feh + zabar"> - <test rtl="True"><string><em>گَفَ</em></string></test> - <test rtl="True"><string>ل<em>گَفَ</em></string></test> - <test rtl="True"><string><em>گَفَ</em>ف</string></test> - <test rtl="True"><string>ل<em>گَفَ</em>ف</string></test> - </testgroup> - <testgroup label="seen + zabar + feh + zabar"> - <test rtl="True"><string><em>سَفَ</em></string></test> - <test rtl="True"><string>ل<em>سَفَ</em></string></test> - <test rtl="True"><string><em>سَفَ</em>ف</string></test> - <test rtl="True"><string>ل<em>سَفَ</em>ف</string></test> - </testgroup> - <testgroup label="tah + zabar + feh + zabar"> - <test rtl="True"><string><em>طَفَ</em></string></test> - <test rtl="True"><string>ل<em>طَفَ</em></string></test> - <test rtl="True"><string><em>طَفَ</em>ف</string></test> - <test rtl="True"><string>ل<em>طَفَ</em>ف</string></test> - </testgroup> - </testgroup> - <testgroup label="Feh form sequences with Zair"> - <testgroup label="teh + zair + feh + zair"> - <test rtl="True"><string><em>تِفِ</em></string></test> - <test rtl="True"><string>ل<em>تِفِ</em></string></test> - <test rtl="True"><string><em>تِفِ</em>ف</string></test> - <test rtl="True"><string>ل<em>تِفِ</em>ف</string></test> - </testgroup> - <testgroup label="lam + zair + feh + zair"> - <test rtl="True"><string><em>لِفِ</em></string></test> - <test rtl="True"><string>ل<em>لِفِ</em></string></test> - <test rtl="True"><string><em>لِفِ</em>ف</string></test> - <test rtl="True"><string>ل<em>لِفِ</em>ف</string></test> - </testgroup> - <testgroup label="beh + zair + feh + zair"> - <test rtl="True"><string><em>بِفِ</em></string></test> - <test rtl="True"><string>ل<em>بِفِ</em></string></test> - <test rtl="True"><string><em>بِفِ</em>ف</string></test> - <test rtl="True"><string>ل<em>بِفِ</em>ف</string></test> - </testgroup> - <testgroup label="kaf + zair + feh + zair"> - <test rtl="True"><string><em>کِفِ</em></string></test> - <test rtl="True"><string>ل<em>کِفِ</em></string></test> - <test rtl="True"><string><em>کِفِ</em>ف</string></test> - <test rtl="True"><string>ل<em>کِفِ</em>ف</string></test> - </testgroup> - <testgroup label="hehDo + zair + feh + zair"> - <test rtl="True"><string><em>ھِفِ</em></string></test> - <test rtl="True"><string>ل<em>ھِفِ</em></string></test> - <test rtl="True"><string><em>ھِفِ</em>ف</string></test> - <test rtl="True"><string>ل<em>ھِفِ</em>ف</string></test> - </testgroup> - <testgroup label="hehGoal + zair + feh + zair"> - <test rtl="True"><string><em>ہِفِ</em></string></test> - <test rtl="True"><string>ل<em>ہِفِ</em></string></test> - <test rtl="True"><string><em>ہِفِ</em>ف</string></test> - <test rtl="True"><string>ل<em>ہِفِ</em>ف</string></test> - </testgroup> - <testgroup label="feh + zair + feh + zair"> - <test rtl="True"><string><em>فِفِ</em></string></test> - <test rtl="True"><string>ل<em>فِفِ</em></string></test> - <test rtl="True"><string><em>فِفِ</em>ف</string></test> - <test rtl="True"><string>ل<em>فِفِ</em>ف</string></test> - </testgroup> - <testgroup label="sad + zair + feh + zair"> - <test rtl="True"><string><em>صِفِ</em></string></test> - <test rtl="True"><string>ل<em>صِفِ</em></string></test> - <test rtl="True"><string><em>صِفِ</em>ف</string></test> - <test rtl="True"><string>ل<em>صِفِ</em>ف</string></test> - </testgroup> - <testgroup label="meem + zair + feh + zair"> - <test rtl="True"><string><em>مِفِ</em></string></test> - <test rtl="True"><string>ل<em>مِفِ</em></string></test> - <test rtl="True"><string><em>مِفِ</em>ف</string></test> - <test rtl="True"><string>ل<em>مِفِ</em>ف</string></test> - </testgroup> - <testgroup label="ain + zair + feh + zair"> - <test rtl="True"><string><em>عِفِ</em></string></test> - <test rtl="True"><string>ل<em>عِفِ</em></string></test> - <test rtl="True"><string><em>عِفِ</em>ف</string></test> - <test rtl="True"><string>ل<em>عِفِ</em>ف</string></test> - </testgroup> - <testgroup label="jeem + zair + feh + zair"> - <test rtl="True"><string><em>جِفِ</em></string></test> - <test rtl="True"><string>ل<em>جِفِ</em></string></test> - <test rtl="True"><string><em>جِفِ</em>ف</string></test> - <test rtl="True"><string>ل<em>جِفِ</em>ف</string></test> - </testgroup> - <testgroup label="gaf + zair + feh + zair"> - <test rtl="True"><string><em>گِفِ</em></string></test> - <test rtl="True"><string>ل<em>گِفِ</em></string></test> - <test rtl="True"><string><em>گِفِ</em>ف</string></test> - <test rtl="True"><string>ل<em>گِفِ</em>ف</string></test> - </testgroup> - <testgroup label="seen + zair + feh + zair"> - <test rtl="True"><string><em>سِفِ</em></string></test> - <test rtl="True"><string>ل<em>سِفِ</em></string></test> - <test rtl="True"><string><em>سِفِ</em>ف</string></test> - <test rtl="True"><string>ل<em>سِفِ</em>ف</string></test> - </testgroup> - <testgroup label="tah + zair + feh + zair"> - <test rtl="True"><string><em>طِفِ</em></string></test> - <test rtl="True"><string>ل<em>طِفِ</em></string></test> - <test rtl="True"><string><em>طِفِ</em>ف</string></test> - <test rtl="True"><string>ل<em>طِفِ</em>ف</string></test> - </testgroup> - </testgroup> - <testgroup label="Qaf form sequences with Zabar"> - <testgroup label="teh + zabar + qaf + zabar"> - <test rtl="True"><string><em>تَقَ</em></string></test> - <test rtl="True"><string>ل<em>تَقَ</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>لَقَ</em></string></test> - <test rtl="True"><string>ل<em>لَقَ</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>بَقَ</em></string></test> - <test rtl="True"><string>ل<em>بَقَ</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>کَقَ</em></string></test> - <test rtl="True"><string>ل<em>کَقَ</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>ھَقَ</em></string></test> - <test rtl="True"><string>ل<em>ھَقَ</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>ہَقَ</em></string></test> - <test rtl="True"><string>ل<em>ہَقَ</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>فَقَ</em></string></test> - <test rtl="True"><string>ل<em>فَقَ</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>صَقَ</em></string></test> - <test rtl="True"><string>ل<em>صَقَ</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>مَقَ</em></string></test> - <test rtl="True"><string>ل<em>مَقَ</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>عَقَ</em></string></test> - <test rtl="True"><string>ل<em>عَقَ</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>جَقَ</em></string></test> - <test rtl="True"><string>ل<em>جَقَ</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>گَقَ</em></string></test> - <test rtl="True"><string>ل<em>گَقَ</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>سَقَ</em></string></test> - <test rtl="True"><string>ل<em>سَقَ</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>طَقَ</em></string></test> - <test rtl="True"><string>ل<em>طَقَ</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>تِقِ</em></string></test> - <test rtl="True"><string>ل<em>تِقِ</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>لِقِ</em></string></test> - <test rtl="True"><string>ل<em>لِقِ</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>بِقِ</em></string></test> - <test rtl="True"><string>ل<em>بِقِ</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>کِقِ</em></string></test> - <test rtl="True"><string>ل<em>کِقِ</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>ھِقِ</em></string></test> - <test rtl="True"><string>ل<em>ھِقِ</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>ہِقِ</em></string></test> - <test rtl="True"><string>ل<em>ہِقِ</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>فِقِ</em></string></test> - <test rtl="True"><string>ل<em>فِقِ</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>صِقِ</em></string></test> - <test rtl="True"><string>ل<em>صِقِ</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>مِقِ</em></string></test> - <test rtl="True"><string>ل<em>مِقِ</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>عِقِ</em></string></test> - <test rtl="True"><string>ل<em>عِقِ</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>جِقِ</em></string></test> - <test rtl="True"><string>ل<em>جِقِ</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>گِقِ</em></string></test> - <test rtl="True"><string>ل<em>گِقِ</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>سِقِ</em></string></test> - <test rtl="True"><string>ل<em>سِقِ</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>طِقِ</em></string></test> - <test rtl="True"><string>ل<em>طِقِ</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>تَلَ</em></string></test> - <test rtl="True"><string>ل<em>تَلَ</em></string></test> - <test rtl="True"><string><em>تَلَ</em>ف</string></test> - <test rtl="True"><string>ل<em>تَلَ</em>ف</string></test> - </testgroup> - <testgroup label="lam + zabar + lam + zabar"> - <test rtl="True"><string><em>لَلَ</em></string></test> - <test rtl="True"><string>ل<em>لَلَ</em></string></test> - <test rtl="True"><string><em>لَلَ</em>ف</string></test> - <test rtl="True"><string>ل<em>لَلَ</em>ف</string></test> - </testgroup> - <testgroup label="beh + zabar + lam + zabar"> - <test rtl="True"><string><em>بَلَ</em></string></test> - <test rtl="True"><string>ل<em>بَلَ</em></string></test> - <test rtl="True"><string><em>بَلَ</em>ف</string></test> - <test rtl="True"><string>ل<em>بَلَ</em>ف</string></test> - </testgroup> - <testgroup label="kaf + zabar + lam + zabar"> - <test rtl="True"><string><em>کَلَ</em></string></test> - <test rtl="True"><string>ل<em>کَلَ</em></string></test> - <test rtl="True"><string><em>کَلَ</em>ف</string></test> - <test rtl="True"><string>ل<em>کَلَ</em>ف</string></test> - </testgroup> - <testgroup label="hehDo + zabar + lam + zabar"> - <test rtl="True"><string><em>ھَلَ</em></string></test> - <test rtl="True"><string>ل<em>ھَلَ</em></string></test> - <test rtl="True"><string><em>ھَلَ</em>ف</string></test> - <test rtl="True"><string>ل<em>ھَلَ</em>ف</string></test> - </testgroup> - <testgroup label="hehGoal + zabar + lam + zabar"> - <test rtl="True"><string><em>ہَلَ</em></string></test> - <test rtl="True"><string>ل<em>ہَلَ</em></string></test> - <test rtl="True"><string><em>ہَلَ</em>ف</string></test> - <test rtl="True"><string>ل<em>ہَلَ</em>ف</string></test> - </testgroup> - <testgroup label="feh + zabar + lam + zabar"> - <test rtl="True"><string><em>فَلَ</em></string></test> - <test rtl="True"><string>ل<em>فَلَ</em></string></test> - <test rtl="True"><string><em>فَلَ</em>ف</string></test> - <test rtl="True"><string>ل<em>فَلَ</em>ف</string></test> - </testgroup> - <testgroup label="sad + zabar + lam + zabar"> - <test rtl="True"><string><em>صَلَ</em></string></test> - <test rtl="True"><string>ل<em>صَلَ</em></string></test> - <test rtl="True"><string><em>صَلَ</em>ف</string></test> - <test rtl="True"><string>ل<em>صَلَ</em>ف</string></test> - </testgroup> - <testgroup label="meem + zabar + lam + zabar"> - <test rtl="True"><string><em>مَلَ</em></string></test> - <test rtl="True"><string>ل<em>مَلَ</em></string></test> - <test rtl="True"><string><em>مَلَ</em>ف</string></test> - <test rtl="True"><string>ل<em>مَلَ</em>ف</string></test> - </testgroup> - <testgroup label="ain + zabar + lam + zabar"> - <test rtl="True"><string><em>عَلَ</em></string></test> - <test rtl="True"><string>ل<em>عَلَ</em></string></test> - <test rtl="True"><string><em>عَلَ</em>ف</string></test> - <test rtl="True"><string>ل<em>عَلَ</em>ف</string></test> - </testgroup> - <testgroup label="jeem + zabar + lam + zabar"> - <test rtl="True"><string><em>جَلَ</em></string></test> - <test rtl="True"><string>ل<em>جَلَ</em></string></test> - <test rtl="True"><string><em>جَلَ</em>ف</string></test> - <test rtl="True"><string>ل<em>جَلَ</em>ف</string></test> - </testgroup> - <testgroup label="gaf + zabar + lam + zabar"> - <test rtl="True"><string><em>گَلَ</em></string></test> - <test rtl="True"><string>ل<em>گَلَ</em></string></test> - <test rtl="True"><string><em>گَلَ</em>ف</string></test> - <test rtl="True"><string>ل<em>گَلَ</em>ف</string></test> - </testgroup> - <testgroup label="seen + zabar + lam + zabar"> - <test rtl="True"><string><em>سَلَ</em></string></test> - <test rtl="True"><string>ل<em>سَلَ</em></string></test> - <test rtl="True"><string><em>سَلَ</em>ف</string></test> - <test rtl="True"><string>ل<em>سَلَ</em>ف</string></test> - </testgroup> - <testgroup label="tah + zabar + lam + zabar"> - <test rtl="True"><string><em>طَلَ</em></string></test> - <test rtl="True"><string>ل<em>طَلَ</em></string></test> - <test rtl="True"><string><em>طَلَ</em>ف</string></test> - <test rtl="True"><string>ل<em>طَلَ</em>ف</string></test> - </testgroup> - </testgroup> - <testgroup label="Lam form sequences with Zair"> - <testgroup label="teh + zair + lam + zair"> - <test rtl="True"><string><em>تِلِ</em></string></test> - <test rtl="True"><string>ل<em>تِلِ</em></string></test> - <test rtl="True"><string><em>تِلِ</em>ف</string></test> - <test rtl="True"><string>ل<em>تِلِ</em>ف</string></test> - </testgroup> - <testgroup label="lam + zair + lam + zair"> - <test rtl="True"><string><em>لِلِ</em></string></test> - <test rtl="True"><string>ل<em>لِلِ</em></string></test> - <test rtl="True"><string><em>لِلِ</em>ف</string></test> - <test rtl="True"><string>ل<em>لِلِ</em>ف</string></test> - </testgroup> - <testgroup label="beh + zair + lam + zair"> - <test rtl="True"><string><em>بِلِ</em></string></test> - <test rtl="True"><string>ل<em>بِلِ</em></string></test> - <test rtl="True"><string><em>بِلِ</em>ف</string></test> - <test rtl="True"><string>ل<em>بِلِ</em>ف</string></test> - </testgroup> - <testgroup label="kaf + zair + lam + zair"> - <test rtl="True"><string><em>کِلِ</em></string></test> - <test rtl="True"><string>ل<em>کِلِ</em></string></test> - <test rtl="True"><string><em>کِلِ</em>ف</string></test> - <test rtl="True"><string>ل<em>کِلِ</em>ف</string></test> - </testgroup> - <testgroup label="hehDo + zair + lam + zair"> - <test rtl="True"><string><em>ھِلِ</em></string></test> - <test rtl="True"><string>ل<em>ھِلِ</em></string></test> - <test rtl="True"><string><em>ھِلِ</em>ف</string></test> - <test rtl="True"><string>ل<em>ھِلِ</em>ف</string></test> - </testgroup> - <testgroup label="hehGoal + zair + lam + zair"> - <test rtl="True"><string><em>ہِلِ</em></string></test> - <test rtl="True"><string>ل<em>ہِلِ</em></string></test> - <test rtl="True"><string><em>ہِلِ</em>ف</string></test> - <test rtl="True"><string>ل<em>ہِلِ</em>ف</string></test> - </testgroup> - <testgroup label="feh + zair + lam + zair"> - <test rtl="True"><string><em>فِلِ</em></string></test> - <test rtl="True"><string>ل<em>فِلِ</em></string></test> - <test rtl="True"><string><em>فِلِ</em>ف</string></test> - <test rtl="True"><string>ل<em>فِلِ</em>ف</string></test> - </testgroup> - <testgroup label="sad + zair + lam + zair"> - <test rtl="True"><string><em>صِلِ</em></string></test> - <test rtl="True"><string>ل<em>صِلِ</em></string></test> - <test rtl="True"><string><em>صِلِ</em>ف</string></test> - <test rtl="True"><string>ل<em>صِلِ</em>ف</string></test> - </testgroup> - <testgroup label="meem + zair + lam + zair"> - <test rtl="True"><string><em>مِلِ</em></string></test> - <test rtl="True"><string>ل<em>مِلِ</em></string></test> - <test rtl="True"><string><em>مِلِ</em>ف</string></test> - <test rtl="True"><string>ل<em>مِلِ</em>ف</string></test> - </testgroup> - <testgroup label="ain + zair + lam + zair"> - <test rtl="True"><string><em>عِلِ</em></string></test> - <test rtl="True"><string>ل<em>عِلِ</em></string></test> - <test rtl="True"><string><em>عِلِ</em>ف</string></test> - <test rtl="True"><string>ل<em>عِلِ</em>ف</string></test> - </testgroup> - <testgroup label="jeem + zair + lam + zair"> - <test rtl="True"><string><em>جِلِ</em></string></test> - <test rtl="True"><string>ل<em>جِلِ</em></string></test> - <test rtl="True"><string><em>جِلِ</em>ف</string></test> - <test rtl="True"><string>ل<em>جِلِ</em>ف</string></test> - </testgroup> - <testgroup label="gaf + zair + lam + zair"> - <test rtl="True"><string><em>گِلِ</em></string></test> - <test rtl="True"><string>ل<em>گِلِ</em></string></test> - <test rtl="True"><string><em>گِلِ</em>ف</string></test> - <test rtl="True"><string>ل<em>گِلِ</em>ف</string></test> - </testgroup> - <testgroup label="seen + zair + lam + zair"> - <test rtl="True"><string><em>سِلِ</em></string></test> - <test rtl="True"><string>ل<em>سِلِ</em></string></test> - <test rtl="True"><string><em>سِلِ</em>ف</string></test> - <test rtl="True"><string>ل<em>سِلِ</em>ف</string></test> - </testgroup> - <testgroup label="tah + zair + lam + zair"> - <test rtl="True"><string><em>طِلِ</em></string></test> - <test rtl="True"><string>ل<em>طِلِ</em></string></test> - <test rtl="True"><string><em>طِلِ</em>ف</string></test> - <test rtl="True"><string>ل<em>طِلِ</em>ف</string></test> - </testgroup> - </testgroup> - <testgroup label="Meem form sequences with Zabar"> - <testgroup label="teh + zabar + meem + zabar"> - <test rtl="True"><string><em>تَمَ</em></string></test> - <test rtl="True"><string>ل<em>تَمَ</em></string></test> - <test rtl="True"><string><em>تَمَ</em>ف</string></test> - <test rtl="True"><string>ل<em>تَمَ</em>ف</string></test> - </testgroup> - <testgroup label="lam + zabar + meem + zabar"> - <test rtl="True"><string><em>لَمَ</em></string></test> - <test rtl="True"><string>ل<em>لَمَ</em></string></test> - <test rtl="True"><string><em>لَمَ</em>ف</string></test> - <test rtl="True"><string>ل<em>لَمَ</em>ف</string></test> - </testgroup> - <testgroup label="beh + zabar + meem + zabar"> - <test rtl="True"><string><em>بَمَ</em></string></test> - <test rtl="True"><string>ل<em>بَمَ</em></string></test> - <test rtl="True"><string><em>بَمَ</em>ف</string></test> - <test rtl="True"><string>ل<em>بَمَ</em>ف</string></test> - </testgroup> - <testgroup label="kaf + zabar + meem + zabar"> - <test rtl="True"><string><em>کَمَ</em></string></test> - <test rtl="True"><string>ل<em>کَمَ</em></string></test> - <test rtl="True"><string><em>کَمَ</em>ف</string></test> - <test rtl="True"><string>ل<em>کَمَ</em>ف</string></test> - </testgroup> - <testgroup label="hehDo + zabar + meem + zabar"> - <test rtl="True"><string><em>ھَمَ</em></string></test> - <test rtl="True"><string>ل<em>ھَمَ</em></string></test> - <test rtl="True"><string><em>ھَمَ</em>ف</string></test> - <test rtl="True"><string>ل<em>ھَمَ</em>ف</string></test> - </testgroup> - <testgroup label="hehGoal + zabar + meem + zabar"> - <test rtl="True"><string><em>ہَمَ</em></string></test> - <test rtl="True"><string>ل<em>ہَمَ</em></string></test> - <test rtl="True"><string><em>ہَمَ</em>ف</string></test> - <test rtl="True"><string>ل<em>ہَمَ</em>ف</string></test> - </testgroup> - <testgroup label="feh + zabar + meem + zabar"> - <test rtl="True"><string><em>فَمَ</em></string></test> - <test rtl="True"><string>ل<em>فَمَ</em></string></test> - <test rtl="True"><string><em>فَمَ</em>ف</string></test> - <test rtl="True"><string>ل<em>فَمَ</em>ف</string></test> - </testgroup> - <testgroup label="sad + zabar + meem + zabar"> - <test rtl="True"><string><em>صَمَ</em></string></test> - <test rtl="True"><string>ل<em>صَمَ</em></string></test> - <test rtl="True"><string><em>صَمَ</em>ف</string></test> - <test rtl="True"><string>ل<em>صَمَ</em>ف</string></test> - </testgroup> - <testgroup label="meem + zabar + meem + zabar"> - <test rtl="True"><string><em>مَمَ</em></string></test> - <test rtl="True"><string>ل<em>مَمَ</em></string></test> - <test rtl="True"><string><em>مَمَ</em>ف</string></test> - <test rtl="True"><string>ل<em>مَمَ</em>ف</string></test> - </testgroup> - <testgroup label="ain + zabar + meem + zabar"> - <test rtl="True"><string><em>عَمَ</em></string></test> - <test rtl="True"><string>ل<em>عَمَ</em></string></test> - <test rtl="True"><string><em>عَمَ</em>ف</string></test> - <test rtl="True"><string>ل<em>عَمَ</em>ف</string></test> - </testgroup> - <testgroup label="jeem + zabar + meem + zabar"> - <test rtl="True"><string><em>جَمَ</em></string></test> - <test rtl="True"><string>ل<em>جَمَ</em></string></test> - <test rtl="True"><string><em>جَمَ</em>ف</string></test> - <test rtl="True"><string>ل<em>جَمَ</em>ف</string></test> - </testgroup> - <testgroup label="gaf + zabar + meem + zabar"> - <test rtl="True"><string><em>گَمَ</em></string></test> - <test rtl="True"><string>ل<em>گَمَ</em></string></test> - <test rtl="True"><string><em>گَمَ</em>ف</string></test> - <test rtl="True"><string>ل<em>گَمَ</em>ف</string></test> - </testgroup> - <testgroup label="seen + zabar + meem + zabar"> - <test rtl="True"><string><em>سَمَ</em></string></test> - <test rtl="True"><string>ل<em>سَمَ</em></string></test> - <test rtl="True"><string><em>سَمَ</em>ف</string></test> - <test rtl="True"><string>ل<em>سَمَ</em>ف</string></test> - </testgroup> - <testgroup label="tah + zabar + meem + zabar"> - <test rtl="True"><string><em>طَمَ</em></string></test> - <test rtl="True"><string>ل<em>طَمَ</em></string></test> - <test rtl="True"><string><em>طَمَ</em>ف</string></test> - <test rtl="True"><string>ل<em>طَمَ</em>ف</string></test> - </testgroup> - </testgroup> - <testgroup label="Meem form sequences with Zair"> - <testgroup label="teh + zair + meem + zair"> - <test rtl="True"><string><em>تِمِ</em></string></test> - <test rtl="True"><string>ل<em>تِمِ</em></string></test> - <test rtl="True"><string><em>تِمِ</em>ف</string></test> - <test rtl="True"><string>ل<em>تِمِ</em>ف</string></test> - </testgroup> - <testgroup label="lam + zair + meem + zair"> - <test rtl="True"><string><em>لِمِ</em></string></test> - <test rtl="True"><string>ل<em>لِمِ</em></string></test> - <test rtl="True"><string><em>لِمِ</em>ف</string></test> - <test rtl="True"><string>ل<em>لِمِ</em>ف</string></test> - </testgroup> - <testgroup label="beh + zair + meem + zair"> - <test rtl="True"><string><em>بِمِ</em></string></test> - <test rtl="True"><string>ل<em>بِمِ</em></string></test> - <test rtl="True"><string><em>بِمِ</em>ف</string></test> - <test rtl="True"><string>ل<em>بِمِ</em>ف</string></test> - </testgroup> - <testgroup label="kaf + zair + meem + zair"> - <test rtl="True"><string><em>کِمِ</em></string></test> - <test rtl="True"><string>ل<em>کِمِ</em></string></test> - <test rtl="True"><string><em>کِمِ</em>ف</string></test> - <test rtl="True"><string>ل<em>کِمِ</em>ف</string></test> - </testgroup> - <testgroup label="hehDo + zair + meem + zair"> - <test rtl="True"><string><em>ھِمِ</em></string></test> - <test rtl="True"><string>ل<em>ھِمِ</em></string></test> - <test rtl="True"><string><em>ھِمِ</em>ف</string></test> - <test rtl="True"><string>ل<em>ھِمِ</em>ف</string></test> - </testgroup> - <testgroup label="hehGoal + zair + meem + zair"> - <test rtl="True"><string><em>ہِمِ</em></string></test> - <test rtl="True"><string>ل<em>ہِمِ</em></string></test> - <test rtl="True"><string><em>ہِمِ</em>ف</string></test> - <test rtl="True"><string>ل<em>ہِمِ</em>ف</string></test> - </testgroup> - <testgroup label="feh + zair + meem + zair"> - <test rtl="True"><string><em>فِمِ</em></string></test> - <test rtl="True"><string>ل<em>فِمِ</em></string></test> - <test rtl="True"><string><em>فِمِ</em>ف</string></test> - <test rtl="True"><string>ل<em>فِمِ</em>ف</string></test> - </testgroup> - <testgroup label="sad + zair + meem + zair"> - <test rtl="True"><string><em>صِمِ</em></string></test> - <test rtl="True"><string>ل<em>صِمِ</em></string></test> - <test rtl="True"><string><em>صِمِ</em>ف</string></test> - <test rtl="True"><string>ل<em>صِمِ</em>ف</string></test> - </testgroup> - <testgroup label="meem + zair + meem + zair"> - <test rtl="True"><string><em>مِمِ</em></string></test> - <test rtl="True"><string>ل<em>مِمِ</em></string></test> - <test rtl="True"><string><em>مِمِ</em>ف</string></test> - <test rtl="True"><string>ل<em>مِمِ</em>ف</string></test> - </testgroup> - <testgroup label="ain + zair + meem + zair"> - <test rtl="True"><string><em>عِمِ</em></string></test> - <test rtl="True"><string>ل<em>عِمِ</em></string></test> - <test rtl="True"><string><em>عِمِ</em>ف</string></test> - <test rtl="True"><string>ل<em>عِمِ</em>ف</string></test> - </testgroup> - <testgroup label="jeem + zair + meem + zair"> - <test rtl="True"><string><em>جِمِ</em></string></test> - <test rtl="True"><string>ل<em>جِمِ</em></string></test> - <test rtl="True"><string><em>جِمِ</em>ف</string></test> - <test rtl="True"><string>ل<em>جِمِ</em>ف</string></test> - </testgroup> - <testgroup label="gaf + zair + meem + zair"> - <test rtl="True"><string><em>گِمِ</em></string></test> - <test rtl="True"><string>ل<em>گِمِ</em></string></test> - <test rtl="True"><string><em>گِمِ</em>ف</string></test> - <test rtl="True"><string>ل<em>گِمِ</em>ف</string></test> - </testgroup> - <testgroup label="seen + zair + meem + zair"> - <test rtl="True"><string><em>سِمِ</em></string></test> - <test rtl="True"><string>ل<em>سِمِ</em></string></test> - <test rtl="True"><string><em>سِمِ</em>ف</string></test> - <test rtl="True"><string>ل<em>سِمِ</em>ف</string></test> - </testgroup> - <testgroup label="tah + zair + meem + zair"> - <test rtl="True"><string><em>طِمِ</em></string></test> - <test rtl="True"><string>ل<em>طِمِ</em></string></test> - <test rtl="True"><string><em>طِمِ</em>ف</string></test> - <test rtl="True"><string>ل<em>طِمِ</em>ف</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>تَمَکَ</em></string></test> - <test rtl="True"><string>ل<em>تَمَکَ</em></string></test> - <test rtl="True"><string><em>تَمَکَ</em>ف</string></test> - <test rtl="True"><string>ل<em>تَمَکَ</em>ف</string></test> - </testgroup> - <testgroup label="teh + zabar + meem-alt + zabar + gaf + zabar"> - <test rtl="True"><string><em>تَمَگَ</em></string></test> - <test rtl="True"><string>ل<em>تَمَگَ</em></string></test> - <test rtl="True"><string><em>تَمَگَ</em>ف</string></test> - <test rtl="True"><string>ل<em>تَمَگَ</em>ف</string></test> - </testgroup> - <testgroup label="teh + zabar + meem-alt + zabar + lam + zabar"> - <test rtl="True"><string><em>تَمَلَ</em></string></test> - <test rtl="True"><string>ل<em>تَمَلَ</em></string></test> - <test rtl="True"><string><em>تَمَلَ</em>ف</string></test> - <test rtl="True"><string>ل<em>تَمَلَ</em>ف</string></test> - </testgroup> - <testgroup label="teh + zabar + meem-alt + zabar + alef + zabar"> - <test rtl="True"><string><em>تَمَاَ</em></string></test> - <test rtl="True"><string>ل<em>تَمَاَ</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>تَمَدَ</em></string></test> - <test rtl="True"><string>ل<em>تَمَدَ</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>بَمَکَ</em></string></test> - <test rtl="True"><string>ل<em>بَمَکَ</em></string></test> - <test rtl="True"><string><em>بَمَکَ</em>ف</string></test> - <test rtl="True"><string>ل<em>بَمَکَ</em>ف</string></test> - </testgroup> - <testgroup label="beh + zabar + meem-alt + zabar + gaf + zabar"> - <test rtl="True"><string><em>بَمَگَ</em></string></test> - <test rtl="True"><string>ل<em>بَمَگَ</em></string></test> - <test rtl="True"><string><em>بَمَگَ</em>ف</string></test> - <test rtl="True"><string>ل<em>بَمَگَ</em>ف</string></test> - </testgroup> - <testgroup label="beh + zabar + meem-alt + zabar + lam + zabar"> - <test rtl="True"><string><em>بَمَلَ</em></string></test> - <test rtl="True"><string>ل<em>بَمَلَ</em></string></test> - <test rtl="True"><string><em>بَمَلَ</em>ف</string></test> - <test rtl="True"><string>ل<em>بَمَلَ</em>ف</string></test> - </testgroup> - <testgroup label="beh + zabar + meem-alt + zabar + alef + zabar"> - <test rtl="True"><string><em>بَمَاَ</em></string></test> - <test rtl="True"><string>ل<em>بَمَاَ</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>بَمَدَ</em></string></test> - <test rtl="True"><string>ل<em>بَمَدَ</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>ھَمَکَ</em></string></test> - <test rtl="True"><string>ل<em>ھَمَکَ</em></string></test> - <test rtl="True"><string><em>ھَمَکَ</em>ف</string></test> - <test rtl="True"><string>ل<em>ھَمَکَ</em>ف</string></test> - </testgroup> - <testgroup label="hehDo + zabar + meem-alt + zabar + gaf + zabar"> - <test rtl="True"><string><em>ھَمَگَ</em></string></test> - <test rtl="True"><string>ل<em>ھَمَگَ</em></string></test> - <test rtl="True"><string><em>ھَمَگَ</em>ف</string></test> - <test rtl="True"><string>ل<em>ھَمَگَ</em>ف</string></test> - </testgroup> - <testgroup label="hehDo + zabar + meem-alt + zabar + lam + zabar"> - <test rtl="True"><string><em>ھَمَلَ</em></string></test> - <test rtl="True"><string>ل<em>ھَمَلَ</em></string></test> - <test rtl="True"><string><em>ھَمَلَ</em>ف</string></test> - <test rtl="True"><string>ل<em>ھَمَلَ</em>ف</string></test> - </testgroup> - <testgroup label="hehDo + zabar + meem-alt + zabar + alef + zabar"> - <test rtl="True"><string><em>ھَمَاَ</em></string></test> - <test rtl="True"><string>ل<em>ھَمَاَ</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>ھَمَدَ</em></string></test> - <test rtl="True"><string>ل<em>ھَمَدَ</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>ہَمَکَ</em></string></test> - <test rtl="True"><string>ل<em>ہَمَکَ</em></string></test> - <test rtl="True"><string><em>ہَمَکَ</em>ف</string></test> - <test rtl="True"><string>ل<em>ہَمَکَ</em>ف</string></test> - </testgroup> - <testgroup label="hehGoal + zabar + meem-alt + zabar + gaf + zabar"> - <test rtl="True"><string><em>ہَمَگَ</em></string></test> - <test rtl="True"><string>ل<em>ہَمَگَ</em></string></test> - <test rtl="True"><string><em>ہَمَگَ</em>ف</string></test> - <test rtl="True"><string>ل<em>ہَمَگَ</em>ف</string></test> - </testgroup> - <testgroup label="hehGoal + zabar + meem-alt + zabar + lam + zabar"> - <test rtl="True"><string><em>ہَمَلَ</em></string></test> - <test rtl="True"><string>ل<em>ہَمَلَ</em></string></test> - <test rtl="True"><string><em>ہَمَلَ</em>ف</string></test> - <test rtl="True"><string>ل<em>ہَمَلَ</em>ف</string></test> - </testgroup> - <testgroup label="hehGoal + zabar + meem-alt + zabar + alef + zabar"> - <test rtl="True"><string><em>ہَمَاَ</em></string></test> - <test rtl="True"><string>ل<em>ہَمَاَ</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>ہَمَدَ</em></string></test> - <test rtl="True"><string>ل<em>ہَمَدَ</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>فَمَکَ</em></string></test> - <test rtl="True"><string>ل<em>فَمَکَ</em></string></test> - <test rtl="True"><string><em>فَمَکَ</em>ف</string></test> - <test rtl="True"><string>ل<em>فَمَکَ</em>ف</string></test> - </testgroup> - <testgroup label="feh + zabar + meem-alt + zabar + gaf + zabar"> - <test rtl="True"><string><em>فَمَگَ</em></string></test> - <test rtl="True"><string>ل<em>فَمَگَ</em></string></test> - <test rtl="True"><string><em>فَمَگَ</em>ف</string></test> - <test rtl="True"><string>ل<em>فَمَگَ</em>ف</string></test> - </testgroup> - <testgroup label="feh + zabar + meem-alt + zabar + lam + zabar"> - <test rtl="True"><string><em>فَمَلَ</em></string></test> - <test rtl="True"><string>ل<em>فَمَلَ</em></string></test> - <test rtl="True"><string><em>فَمَلَ</em>ف</string></test> - <test rtl="True"><string>ل<em>فَمَلَ</em>ف</string></test> - </testgroup> - <testgroup label="feh + zabar + meem-alt + zabar + alef + zabar"> - <test rtl="True"><string><em>فَمَاَ</em></string></test> - <test rtl="True"><string>ل<em>فَمَاَ</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>فَمَدَ</em></string></test> - <test rtl="True"><string>ل<em>فَمَدَ</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>صَمَکَ</em></string></test> - <test rtl="True"><string>ل<em>صَمَکَ</em></string></test> - <test rtl="True"><string><em>صَمَکَ</em>ف</string></test> - <test rtl="True"><string>ل<em>صَمَکَ</em>ف</string></test> - </testgroup> - <testgroup label="sad + zabar + meem-alt + zabar + gaf + zabar"> - <test rtl="True"><string><em>صَمَگَ</em></string></test> - <test rtl="True"><string>ل<em>صَمَگَ</em></string></test> - <test rtl="True"><string><em>صَمَگَ</em>ف</string></test> - <test rtl="True"><string>ل<em>صَمَگَ</em>ف</string></test> - </testgroup> - <testgroup label="sad + zabar + meem-alt + zabar + lam + zabar"> - <test rtl="True"><string><em>صَمَلَ</em></string></test> - <test rtl="True"><string>ل<em>صَمَلَ</em></string></test> - <test rtl="True"><string><em>صَمَلَ</em>ف</string></test> - <test rtl="True"><string>ل<em>صَمَلَ</em>ف</string></test> - </testgroup> - <testgroup label="sad + zabar + meem-alt + zabar + alef + zabar"> - <test rtl="True"><string><em>صَمَاَ</em></string></test> - <test rtl="True"><string>ل<em>صَمَاَ</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>صَمَدَ</em></string></test> - <test rtl="True"><string>ل<em>صَمَدَ</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>مَمَکَ</em></string></test> - <test rtl="True"><string>ل<em>مَمَکَ</em></string></test> - <test rtl="True"><string><em>مَمَکَ</em>ف</string></test> - <test rtl="True"><string>ل<em>مَمَکَ</em>ف</string></test> - </testgroup> - <testgroup label="meem + zabar + meem-alt + zabar + gaf + zabar"> - <test rtl="True"><string><em>مَمَگَ</em></string></test> - <test rtl="True"><string>ل<em>مَمَگَ</em></string></test> - <test rtl="True"><string><em>مَمَگَ</em>ف</string></test> - <test rtl="True"><string>ل<em>مَمَگَ</em>ف</string></test> - </testgroup> - <testgroup label="meem + zabar + meem-alt + zabar + lam + zabar"> - <test rtl="True"><string><em>مَمَلَ</em></string></test> - <test rtl="True"><string>ل<em>مَمَلَ</em></string></test> - <test rtl="True"><string><em>مَمَلَ</em>ف</string></test> - <test rtl="True"><string>ل<em>مَمَلَ</em>ف</string></test> - </testgroup> - <testgroup label="meem + zabar + meem-alt + zabar + alef + zabar"> - <test rtl="True"><string><em>مَمَاَ</em></string></test> - <test rtl="True"><string>ل<em>مَمَاَ</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>مَمَدَ</em></string></test> - <test rtl="True"><string>ل<em>مَمَدَ</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>عَمَکَ</em></string></test> - <test rtl="True"><string>ل<em>عَمَکَ</em></string></test> - <test rtl="True"><string><em>عَمَکَ</em>ف</string></test> - <test rtl="True"><string>ل<em>عَمَکَ</em>ف</string></test> - </testgroup> - <testgroup label="ain + zabar + meem-alt + zabar + gaf + zabar"> - <test rtl="True"><string><em>عَمَگَ</em></string></test> - <test rtl="True"><string>ل<em>عَمَگَ</em></string></test> - <test rtl="True"><string><em>عَمَگَ</em>ف</string></test> - <test rtl="True"><string>ل<em>عَمَگَ</em>ف</string></test> - </testgroup> - <testgroup label="ain + zabar + meem-alt + zabar + lam + zabar"> - <test rtl="True"><string><em>عَمَلَ</em></string></test> - <test rtl="True"><string>ل<em>عَمَلَ</em></string></test> - <test rtl="True"><string><em>عَمَلَ</em>ف</string></test> - <test rtl="True"><string>ل<em>عَمَلَ</em>ف</string></test> - </testgroup> - <testgroup label="ain + zabar + meem-alt + zabar + alef + zabar"> - <test rtl="True"><string><em>عَمَاَ</em></string></test> - <test rtl="True"><string>ل<em>عَمَاَ</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>عَمَدَ</em></string></test> - <test rtl="True"><string>ل<em>عَمَدَ</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>جَمَکَ</em></string></test> - <test rtl="True"><string>ل<em>جَمَکَ</em></string></test> - <test rtl="True"><string><em>جَمَکَ</em>ف</string></test> - <test rtl="True"><string>ل<em>جَمَکَ</em>ف</string></test> - </testgroup> - <testgroup label="jeem + zabar + meem-alt + zabar + gaf + zabar"> - <test rtl="True"><string><em>جَمَگَ</em></string></test> - <test rtl="True"><string>ل<em>جَمَگَ</em></string></test> - <test rtl="True"><string><em>جَمَگَ</em>ف</string></test> - <test rtl="True"><string>ل<em>جَمَگَ</em>ف</string></test> - </testgroup> - <testgroup label="jeem + zabar + meem-alt + zabar + lam + zabar"> - <test rtl="True"><string><em>جَمَلَ</em></string></test> - <test rtl="True"><string>ل<em>جَمَلَ</em></string></test> - <test rtl="True"><string><em>جَمَلَ</em>ف</string></test> - <test rtl="True"><string>ل<em>جَمَلَ</em>ف</string></test> - </testgroup> - <testgroup label="jeem + zabar + meem-alt + zabar + alef + zabar"> - <test rtl="True"><string><em>جَمَاَ</em></string></test> - <test rtl="True"><string>ل<em>جَمَاَ</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>جَمَدَ</em></string></test> - <test rtl="True"><string>ل<em>جَمَدَ</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>سَمَکَ</em></string></test> - <test rtl="True"><string>ل<em>سَمَکَ</em></string></test> - <test rtl="True"><string><em>سَمَکَ</em>ف</string></test> - <test rtl="True"><string>ل<em>سَمَکَ</em>ف</string></test> - </testgroup> - <testgroup label="seen + zabar + meem-alt + zabar + gaf + zabar"> - <test rtl="True"><string><em>سَمَگَ</em></string></test> - <test rtl="True"><string>ل<em>سَمَگَ</em></string></test> - <test rtl="True"><string><em>سَمَگَ</em>ف</string></test> - <test rtl="True"><string>ل<em>سَمَگَ</em>ف</string></test> - </testgroup> - <testgroup label="seen + zabar + meem-alt + zabar + lam + zabar"> - <test rtl="True"><string><em>سَمَلَ</em></string></test> - <test rtl="True"><string>ل<em>سَمَلَ</em></string></test> - <test rtl="True"><string><em>سَمَلَ</em>ف</string></test> - <test rtl="True"><string>ل<em>سَمَلَ</em>ف</string></test> - </testgroup> - <testgroup label="seen + zabar + meem-alt + zabar + alef + zabar"> - <test rtl="True"><string><em>سَمَاَ</em></string></test> - <test rtl="True"><string>ل<em>سَمَاَ</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>سَمَدَ</em></string></test> - <test rtl="True"><string>ل<em>سَمَدَ</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>طَمَکَ</em></string></test> - <test rtl="True"><string>ل<em>طَمَکَ</em></string></test> - <test rtl="True"><string><em>طَمَکَ</em>ف</string></test> - <test rtl="True"><string>ل<em>طَمَکَ</em>ف</string></test> - </testgroup> - <testgroup label="tah + zabar + meem-alt + zabar + gaf + zabar"> - <test rtl="True"><string><em>طَمَگَ</em></string></test> - <test rtl="True"><string>ل<em>طَمَگَ</em></string></test> - <test rtl="True"><string><em>طَمَگَ</em>ف</string></test> - <test rtl="True"><string>ل<em>طَمَگَ</em>ف</string></test> - </testgroup> - <testgroup label="tah + zabar + meem-alt + zabar + lam + zabar"> - <test rtl="True"><string><em>طَمَلَ</em></string></test> - <test rtl="True"><string>ل<em>طَمَلَ</em></string></test> - <test rtl="True"><string><em>طَمَلَ</em>ف</string></test> - <test rtl="True"><string>ل<em>طَمَلَ</em>ف</string></test> - </testgroup> - <testgroup label="tah + zabar + meem-alt + zabar + alef + zabar"> - <test rtl="True"><string><em>طَمَاَ</em></string></test> - <test rtl="True"><string>ل<em>طَمَاَ</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>طَمَدَ</em></string></test> - <test rtl="True"><string>ل<em>طَمَدَ</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>تِمِکِ</em></string></test> - <test rtl="True"><string>ل<em>تِمِکِ</em></string></test> - <test rtl="True"><string><em>تِمِکِ</em>ف</string></test> - <test rtl="True"><string>ل<em>تِمِکِ</em>ف</string></test> - </testgroup> - <testgroup label="teh + zair + meem-alt + zair + gaf + zair"> - <test rtl="True"><string><em>تِمِگِ</em></string></test> - <test rtl="True"><string>ل<em>تِمِگِ</em></string></test> - <test rtl="True"><string><em>تِمِگِ</em>ف</string></test> - <test rtl="True"><string>ل<em>تِمِگِ</em>ف</string></test> - </testgroup> - <testgroup label="teh + zair + meem-alt + zair + lam + zair"> - <test rtl="True"><string><em>تِمِلِ</em></string></test> - <test rtl="True"><string>ل<em>تِمِلِ</em></string></test> - <test rtl="True"><string><em>تِمِلِ</em>ف</string></test> - <test rtl="True"><string>ل<em>تِمِلِ</em>ف</string></test> - </testgroup> - <testgroup label="teh + zair + meem-alt + zair + alef + zair"> - <test rtl="True"><string><em>تِمِاِ</em></string></test> - <test rtl="True"><string>ل<em>تِمِاِ</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>تِمِدِ</em></string></test> - <test rtl="True"><string>ل<em>تِمِدِ</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>بِمِکِ</em></string></test> - <test rtl="True"><string>ل<em>بِمِکِ</em></string></test> - <test rtl="True"><string><em>بِمِکِ</em>ف</string></test> - <test rtl="True"><string>ل<em>بِمِکِ</em>ف</string></test> - </testgroup> - <testgroup label="beh + zair + meem-alt + zair + gaf + zair"> - <test rtl="True"><string><em>بِمِگِ</em></string></test> - <test rtl="True"><string>ل<em>بِمِگِ</em></string></test> - <test rtl="True"><string><em>بِمِگِ</em>ف</string></test> - <test rtl="True"><string>ل<em>بِمِگِ</em>ف</string></test> - </testgroup> - <testgroup label="beh + zair + meem-alt + zair + lam + zair"> - <test rtl="True"><string><em>بِمِلِ</em></string></test> - <test rtl="True"><string>ل<em>بِمِلِ</em></string></test> - <test rtl="True"><string><em>بِمِلِ</em>ف</string></test> - <test rtl="True"><string>ل<em>بِمِلِ</em>ف</string></test> - </testgroup> - <testgroup label="beh + zair + meem-alt + zair + alef + zair"> - <test rtl="True"><string><em>بِمِاِ</em></string></test> - <test rtl="True"><string>ل<em>بِمِاِ</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>بِمِدِ</em></string></test> - <test rtl="True"><string>ل<em>بِمِدِ</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>ھِمِکِ</em></string></test> - <test rtl="True"><string>ل<em>ھِمِکِ</em></string></test> - <test rtl="True"><string><em>ھِمِکِ</em>ف</string></test> - <test rtl="True"><string>ل<em>ھِمِکِ</em>ف</string></test> - </testgroup> - <testgroup label="hehDo + zair + meem-alt + zair + gaf + zair"> - <test rtl="True"><string><em>ھِمِگِ</em></string></test> - <test rtl="True"><string>ل<em>ھِمِگِ</em></string></test> - <test rtl="True"><string><em>ھِمِگِ</em>ف</string></test> - <test rtl="True"><string>ل<em>ھِمِگِ</em>ف</string></test> - </testgroup> - <testgroup label="hehDo + zair + meem-alt + zair + lam + zair"> - <test rtl="True"><string><em>ھِمِلِ</em></string></test> - <test rtl="True"><string>ل<em>ھِمِلِ</em></string></test> - <test rtl="True"><string><em>ھِمِلِ</em>ف</string></test> - <test rtl="True"><string>ل<em>ھِمِلِ</em>ف</string></test> - </testgroup> - <testgroup label="hehDo + zair + meem-alt + zair + alef + zair"> - <test rtl="True"><string><em>ھِمِاِ</em></string></test> - <test rtl="True"><string>ل<em>ھِمِاِ</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>ھِمِدِ</em></string></test> - <test rtl="True"><string>ل<em>ھِمِدِ</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>ہِمِکِ</em></string></test> - <test rtl="True"><string>ل<em>ہِمِکِ</em></string></test> - <test rtl="True"><string><em>ہِمِکِ</em>ف</string></test> - <test rtl="True"><string>ل<em>ہِمِکِ</em>ف</string></test> - </testgroup> - <testgroup label="hehGoal + zair + meem-alt + zair + gaf + zair"> - <test rtl="True"><string><em>ہِمِگِ</em></string></test> - <test rtl="True"><string>ل<em>ہِمِگِ</em></string></test> - <test rtl="True"><string><em>ہِمِگِ</em>ف</string></test> - <test rtl="True"><string>ل<em>ہِمِگِ</em>ف</string></test> - </testgroup> - <testgroup label="hehGoal + zair + meem-alt + zair + lam + zair"> - <test rtl="True"><string><em>ہِمِلِ</em></string></test> - <test rtl="True"><string>ل<em>ہِمِلِ</em></string></test> - <test rtl="True"><string><em>ہِمِلِ</em>ف</string></test> - <test rtl="True"><string>ل<em>ہِمِلِ</em>ف</string></test> - </testgroup> - <testgroup label="hehGoal + zair + meem-alt + zair + alef + zair"> - <test rtl="True"><string><em>ہِمِاِ</em></string></test> - <test rtl="True"><string>ل<em>ہِمِاِ</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>ہِمِدِ</em></string></test> - <test rtl="True"><string>ل<em>ہِمِدِ</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>فِمِکِ</em></string></test> - <test rtl="True"><string>ل<em>فِمِکِ</em></string></test> - <test rtl="True"><string><em>فِمِکِ</em>ف</string></test> - <test rtl="True"><string>ل<em>فِمِکِ</em>ف</string></test> - </testgroup> - <testgroup label="feh + zair + meem-alt + zair + gaf + zair"> - <test rtl="True"><string><em>فِمِگِ</em></string></test> - <test rtl="True"><string>ل<em>فِمِگِ</em></string></test> - <test rtl="True"><string><em>فِمِگِ</em>ف</string></test> - <test rtl="True"><string>ل<em>فِمِگِ</em>ف</string></test> - </testgroup> - <testgroup label="feh + zair + meem-alt + zair + lam + zair"> - <test rtl="True"><string><em>فِمِلِ</em></string></test> - <test rtl="True"><string>ل<em>فِمِلِ</em></string></test> - <test rtl="True"><string><em>فِمِلِ</em>ف</string></test> - <test rtl="True"><string>ل<em>فِمِلِ</em>ف</string></test> - </testgroup> - <testgroup label="feh + zair + meem-alt + zair + alef + zair"> - <test rtl="True"><string><em>فِمِاِ</em></string></test> - <test rtl="True"><string>ل<em>فِمِاِ</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>فِمِدِ</em></string></test> - <test rtl="True"><string>ل<em>فِمِدِ</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>صِمِکِ</em></string></test> - <test rtl="True"><string>ل<em>صِمِکِ</em></string></test> - <test rtl="True"><string><em>صِمِکِ</em>ف</string></test> - <test rtl="True"><string>ل<em>صِمِکِ</em>ف</string></test> - </testgroup> - <testgroup label="sad + zair + meem-alt + zair + gaf + zair"> - <test rtl="True"><string><em>صِمِگِ</em></string></test> - <test rtl="True"><string>ل<em>صِمِگِ</em></string></test> - <test rtl="True"><string><em>صِمِگِ</em>ف</string></test> - <test rtl="True"><string>ل<em>صِمِگِ</em>ف</string></test> - </testgroup> - <testgroup label="sad + zair + meem-alt + zair + lam + zair"> - <test rtl="True"><string><em>صِمِلِ</em></string></test> - <test rtl="True"><string>ل<em>صِمِلِ</em></string></test> - <test rtl="True"><string><em>صِمِلِ</em>ف</string></test> - <test rtl="True"><string>ل<em>صِمِلِ</em>ف</string></test> - </testgroup> - <testgroup label="sad + zair + meem-alt + zair + alef + zair"> - <test rtl="True"><string><em>صِمِاِ</em></string></test> - <test rtl="True"><string>ل<em>صِمِاِ</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>صِمِدِ</em></string></test> - <test rtl="True"><string>ل<em>صِمِدِ</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>مِمِکِ</em></string></test> - <test rtl="True"><string>ل<em>مِمِکِ</em></string></test> - <test rtl="True"><string><em>مِمِکِ</em>ف</string></test> - <test rtl="True"><string>ل<em>مِمِکِ</em>ف</string></test> - </testgroup> - <testgroup label="meem + zair + meem-alt + zair + gaf + zair"> - <test rtl="True"><string><em>مِمِگِ</em></string></test> - <test rtl="True"><string>ل<em>مِمِگِ</em></string></test> - <test rtl="True"><string><em>مِمِگِ</em>ف</string></test> - <test rtl="True"><string>ل<em>مِمِگِ</em>ف</string></test> - </testgroup> - <testgroup label="meem + zair + meem-alt + zair + lam + zair"> - <test rtl="True"><string><em>مِمِلِ</em></string></test> - <test rtl="True"><string>ل<em>مِمِلِ</em></string></test> - <test rtl="True"><string><em>مِمِلِ</em>ف</string></test> - <test rtl="True"><string>ل<em>مِمِلِ</em>ف</string></test> - </testgroup> - <testgroup label="meem + zair + meem-alt + zair + alef + zair"> - <test rtl="True"><string><em>مِمِاِ</em></string></test> - <test rtl="True"><string>ل<em>مِمِاِ</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>مِمِدِ</em></string></test> - <test rtl="True"><string>ل<em>مِمِدِ</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>عِمِکِ</em></string></test> - <test rtl="True"><string>ل<em>عِمِکِ</em></string></test> - <test rtl="True"><string><em>عِمِکِ</em>ف</string></test> - <test rtl="True"><string>ل<em>عِمِکِ</em>ف</string></test> - </testgroup> - <testgroup label="ain + zair + meem-alt + zair + gaf + zair"> - <test rtl="True"><string><em>عِمِگِ</em></string></test> - <test rtl="True"><string>ل<em>عِمِگِ</em></string></test> - <test rtl="True"><string><em>عِمِگِ</em>ف</string></test> - <test rtl="True"><string>ل<em>عِمِگِ</em>ف</string></test> - </testgroup> - <testgroup label="ain + zair + meem-alt + zair + lam + zair"> - <test rtl="True"><string><em>عِمِلِ</em></string></test> - <test rtl="True"><string>ل<em>عِمِلِ</em></string></test> - <test rtl="True"><string><em>عِمِلِ</em>ف</string></test> - <test rtl="True"><string>ل<em>عِمِلِ</em>ف</string></test> - </testgroup> - <testgroup label="ain + zair + meem-alt + zair + alef + zair"> - <test rtl="True"><string><em>عِمِاِ</em></string></test> - <test rtl="True"><string>ل<em>عِمِاِ</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>عِمِدِ</em></string></test> - <test rtl="True"><string>ل<em>عِمِدِ</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>جِمِکِ</em></string></test> - <test rtl="True"><string>ل<em>جِمِکِ</em></string></test> - <test rtl="True"><string><em>جِمِکِ</em>ف</string></test> - <test rtl="True"><string>ل<em>جِمِکِ</em>ف</string></test> - </testgroup> - <testgroup label="jeem + zair + meem-alt + zair + gaf + zair"> - <test rtl="True"><string><em>جِمِگِ</em></string></test> - <test rtl="True"><string>ل<em>جِمِگِ</em></string></test> - <test rtl="True"><string><em>جِمِگِ</em>ف</string></test> - <test rtl="True"><string>ل<em>جِمِگِ</em>ف</string></test> - </testgroup> - <testgroup label="jeem + zair + meem-alt + zair + lam + zair"> - <test rtl="True"><string><em>جِمِلِ</em></string></test> - <test rtl="True"><string>ل<em>جِمِلِ</em></string></test> - <test rtl="True"><string><em>جِمِلِ</em>ف</string></test> - <test rtl="True"><string>ل<em>جِمِلِ</em>ف</string></test> - </testgroup> - <testgroup label="jeem + zair + meem-alt + zair + alef + zair"> - <test rtl="True"><string><em>جِمِاِ</em></string></test> - <test rtl="True"><string>ل<em>جِمِاِ</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>جِمِدِ</em></string></test> - <test rtl="True"><string>ل<em>جِمِدِ</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>سِمِکِ</em></string></test> - <test rtl="True"><string>ل<em>سِمِکِ</em></string></test> - <test rtl="True"><string><em>سِمِکِ</em>ف</string></test> - <test rtl="True"><string>ل<em>سِمِکِ</em>ف</string></test> - </testgroup> - <testgroup label="seen + zair + meem-alt + zair + gaf + zair"> - <test rtl="True"><string><em>سِمِگِ</em></string></test> - <test rtl="True"><string>ل<em>سِمِگِ</em></string></test> - <test rtl="True"><string><em>سِمِگِ</em>ف</string></test> - <test rtl="True"><string>ل<em>سِمِگِ</em>ف</string></test> - </testgroup> - <testgroup label="seen + zair + meem-alt + zair + lam + zair"> - <test rtl="True"><string><em>سِمِلِ</em></string></test> - <test rtl="True"><string>ل<em>سِمِلِ</em></string></test> - <test rtl="True"><string><em>سِمِلِ</em>ف</string></test> - <test rtl="True"><string>ل<em>سِمِلِ</em>ف</string></test> - </testgroup> - <testgroup label="seen + zair + meem-alt + zair + alef + zair"> - <test rtl="True"><string><em>سِمِاِ</em></string></test> - <test rtl="True"><string>ل<em>سِمِاِ</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>سِمِدِ</em></string></test> - <test rtl="True"><string>ل<em>سِمِدِ</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>طِمِکِ</em></string></test> - <test rtl="True"><string>ل<em>طِمِکِ</em></string></test> - <test rtl="True"><string><em>طِمِکِ</em>ف</string></test> - <test rtl="True"><string>ل<em>طِمِکِ</em>ف</string></test> - </testgroup> - <testgroup label="tah + zair + meem-alt + zair + gaf + zair"> - <test rtl="True"><string><em>طِمِگِ</em></string></test> - <test rtl="True"><string>ل<em>طِمِگِ</em></string></test> - <test rtl="True"><string><em>طِمِگِ</em>ف</string></test> - <test rtl="True"><string>ل<em>طِمِگِ</em>ف</string></test> - </testgroup> - <testgroup label="tah + zair + meem-alt + zair + lam + zair"> - <test rtl="True"><string><em>طِمِلِ</em></string></test> - <test rtl="True"><string>ل<em>طِمِلِ</em></string></test> - <test rtl="True"><string><em>طِمِلِ</em>ف</string></test> - <test rtl="True"><string>ل<em>طِمِلِ</em>ف</string></test> - </testgroup> - <testgroup label="tah + zair + meem-alt + zair + alef + zair"> - <test rtl="True"><string><em>طِمِاِ</em></string></test> - <test rtl="True"><string>ل<em>طِمِاِ</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>طِمِدِ</em></string></test> - <test rtl="True"><string>ل<em>طِمِدِ</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>تَنَ</em></string></test> - <test rtl="True"><string>ل<em>تَنَ</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>لَنَ</em></string></test> - <test rtl="True"><string>ل<em>لَنَ</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>بَنَ</em></string></test> - <test rtl="True"><string>ل<em>بَنَ</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>کَنَ</em></string></test> - <test rtl="True"><string>ل<em>کَنَ</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>ھَنَ</em></string></test> - <test rtl="True"><string>ل<em>ھَنَ</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>ہَنَ</em></string></test> - <test rtl="True"><string>ل<em>ہَنَ</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>فَنَ</em></string></test> - <test rtl="True"><string>ل<em>فَنَ</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>صَنَ</em></string></test> - <test rtl="True"><string>ل<em>صَنَ</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>مَنَ</em></string></test> - <test rtl="True"><string>ل<em>مَنَ</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>عَنَ</em></string></test> - <test rtl="True"><string>ل<em>عَنَ</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>جَنَ</em></string></test> - <test rtl="True"><string>ل<em>جَنَ</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>گَنَ</em></string></test> - <test rtl="True"><string>ل<em>گَنَ</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>سَنَ</em></string></test> - <test rtl="True"><string>ل<em>سَنَ</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>طَنَ</em></string></test> - <test rtl="True"><string>ل<em>طَنَ</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>تِنِ</em></string></test> - <test rtl="True"><string>ل<em>تِنِ</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>لِنِ</em></string></test> - <test rtl="True"><string>ل<em>لِنِ</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>بِنِ</em></string></test> - <test rtl="True"><string>ل<em>بِنِ</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>کِنِ</em></string></test> - <test rtl="True"><string>ل<em>کِنِ</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>ھِنِ</em></string></test> - <test rtl="True"><string>ل<em>ھِنِ</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>ہِنِ</em></string></test> - <test rtl="True"><string>ل<em>ہِنِ</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>فِنِ</em></string></test> - <test rtl="True"><string>ل<em>فِنِ</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>صِنِ</em></string></test> - <test rtl="True"><string>ل<em>صِنِ</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>مِنِ</em></string></test> - <test rtl="True"><string>ل<em>مِنِ</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>عِنِ</em></string></test> - <test rtl="True"><string>ل<em>عِنِ</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>جِنِ</em></string></test> - <test rtl="True"><string>ل<em>جِنِ</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>گِنِ</em></string></test> - <test rtl="True"><string>ل<em>گِنِ</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>سِنِ</em></string></test> - <test rtl="True"><string>ل<em>سِنِ</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>طِنِ</em></string></test> - <test rtl="True"><string>ل<em>طِنِ</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>تَوَ</em></string></test> - <test rtl="True"><string>ل<em>تَوَ</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>لَوَ</em></string></test> - <test rtl="True"><string>ل<em>لَوَ</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>بَوَ</em></string></test> - <test rtl="True"><string>ل<em>بَوَ</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>کَوَ</em></string></test> - <test rtl="True"><string>ل<em>کَوَ</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>ھَوَ</em></string></test> - <test rtl="True"><string>ل<em>ھَوَ</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>ہَوَ</em></string></test> - <test rtl="True"><string>ل<em>ہَوَ</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>فَوَ</em></string></test> - <test rtl="True"><string>ل<em>فَوَ</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>صَوَ</em></string></test> - <test rtl="True"><string>ل<em>صَوَ</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>مَوَ</em></string></test> - <test rtl="True"><string>ل<em>مَوَ</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>عَوَ</em></string></test> - <test rtl="True"><string>ل<em>عَوَ</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>جَوَ</em></string></test> - <test rtl="True"><string>ل<em>جَوَ</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>گَوَ</em></string></test> - <test rtl="True"><string>ل<em>گَوَ</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>سَوَ</em></string></test> - <test rtl="True"><string>ل<em>سَوَ</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>طَوَ</em></string></test> - <test rtl="True"><string>ل<em>طَوَ</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>تِوِ</em></string></test> - <test rtl="True"><string>ل<em>تِوِ</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>لِوِ</em></string></test> - <test rtl="True"><string>ل<em>لِوِ</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>بِوِ</em></string></test> - <test rtl="True"><string>ل<em>بِوِ</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>کِوِ</em></string></test> - <test rtl="True"><string>ل<em>کِوِ</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>ھِوِ</em></string></test> - <test rtl="True"><string>ل<em>ھِوِ</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>ہِوِ</em></string></test> - <test rtl="True"><string>ل<em>ہِوِ</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>فِوِ</em></string></test> - <test rtl="True"><string>ل<em>فِوِ</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>صِوِ</em></string></test> - <test rtl="True"><string>ل<em>صِوِ</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>مِوِ</em></string></test> - <test rtl="True"><string>ل<em>مِوِ</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>عِوِ</em></string></test> - <test rtl="True"><string>ل<em>عِوِ</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>جِوِ</em></string></test> - <test rtl="True"><string>ل<em>جِوِ</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>گِوِ</em></string></test> - <test rtl="True"><string>ل<em>گِوِ</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>سِوِ</em></string></test> - <test rtl="True"><string>ل<em>سِوِ</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>طِوِ</em></string></test> - <test rtl="True"><string>ل<em>طِوِ</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>تَکَ</em></string></test> - <test rtl="True"><string>ل<em>تَکَ</em></string></test> - <test rtl="True"><string><em>تَکَ</em>ف</string></test> - <test rtl="True"><string>ل<em>تَکَ</em>ف</string></test> - </testgroup> - <testgroup label="lam + zabar + kaf + zabar"> - <test rtl="True"><string><em>لَکَ</em></string></test> - <test rtl="True"><string>ل<em>لَکَ</em></string></test> - <test rtl="True"><string><em>لَکَ</em>ف</string></test> - <test rtl="True"><string>ل<em>لَکَ</em>ف</string></test> - </testgroup> - <testgroup label="beh + zabar + kaf + zabar"> - <test rtl="True"><string><em>بَکَ</em></string></test> - <test rtl="True"><string>ل<em>بَکَ</em></string></test> - <test rtl="True"><string><em>بَکَ</em>ف</string></test> - <test rtl="True"><string>ل<em>بَکَ</em>ف</string></test> - </testgroup> - <testgroup label="kaf + zabar + kaf + zabar"> - <test rtl="True"><string><em>کَکَ</em></string></test> - <test rtl="True"><string>ل<em>کَکَ</em></string></test> - <test rtl="True"><string><em>کَکَ</em>ف</string></test> - <test rtl="True"><string>ل<em>کَکَ</em>ف</string></test> - </testgroup> - <testgroup label="hehDo + zabar + kaf + zabar"> - <test rtl="True"><string><em>ھَکَ</em></string></test> - <test rtl="True"><string>ل<em>ھَکَ</em></string></test> - <test rtl="True"><string><em>ھَکَ</em>ف</string></test> - <test rtl="True"><string>ل<em>ھَکَ</em>ف</string></test> - </testgroup> - <testgroup label="hehGoal + zabar + kaf + zabar"> - <test rtl="True"><string><em>ہَکَ</em></string></test> - <test rtl="True"><string>ل<em>ہَکَ</em></string></test> - <test rtl="True"><string><em>ہَکَ</em>ف</string></test> - <test rtl="True"><string>ل<em>ہَکَ</em>ف</string></test> - </testgroup> - <testgroup label="feh + zabar + kaf + zabar"> - <test rtl="True"><string><em>فَکَ</em></string></test> - <test rtl="True"><string>ل<em>فَکَ</em></string></test> - <test rtl="True"><string><em>فَکَ</em>ف</string></test> - <test rtl="True"><string>ل<em>فَکَ</em>ف</string></test> - </testgroup> - <testgroup label="sad + zabar + kaf + zabar"> - <test rtl="True"><string><em>صَکَ</em></string></test> - <test rtl="True"><string>ل<em>صَکَ</em></string></test> - <test rtl="True"><string><em>صَکَ</em>ف</string></test> - <test rtl="True"><string>ل<em>صَکَ</em>ف</string></test> - </testgroup> - <testgroup label="meem + zabar + kaf + zabar"> - <test rtl="True"><string><em>مَکَ</em></string></test> - <test rtl="True"><string>ل<em>مَکَ</em></string></test> - <test rtl="True"><string><em>مَکَ</em>ف</string></test> - <test rtl="True"><string>ل<em>مَکَ</em>ف</string></test> - </testgroup> - <testgroup label="ain + zabar + kaf + zabar"> - <test rtl="True"><string><em>عَکَ</em></string></test> - <test rtl="True"><string>ل<em>عَکَ</em></string></test> - <test rtl="True"><string><em>عَکَ</em>ف</string></test> - <test rtl="True"><string>ل<em>عَکَ</em>ف</string></test> - </testgroup> - <testgroup label="jeem + zabar + kaf + zabar"> - <test rtl="True"><string><em>جَکَ</em></string></test> - <test rtl="True"><string>ل<em>جَکَ</em></string></test> - <test rtl="True"><string><em>جَکَ</em>ف</string></test> - <test rtl="True"><string>ل<em>جَکَ</em>ف</string></test> - </testgroup> - <testgroup label="gaf + zabar + kaf + zabar"> - <test rtl="True"><string><em>گَکَ</em></string></test> - <test rtl="True"><string>ل<em>گَکَ</em></string></test> - <test rtl="True"><string><em>گَکَ</em>ف</string></test> - <test rtl="True"><string>ل<em>گَکَ</em>ف</string></test> - </testgroup> - <testgroup label="seen + zabar + kaf + zabar"> - <test rtl="True"><string><em>سَکَ</em></string></test> - <test rtl="True"><string>ل<em>سَکَ</em></string></test> - <test rtl="True"><string><em>سَکَ</em>ف</string></test> - <test rtl="True"><string>ل<em>سَکَ</em>ف</string></test> - </testgroup> - <testgroup label="tah + zabar + kaf + zabar"> - <test rtl="True"><string><em>طَکَ</em></string></test> - <test rtl="True"><string>ل<em>طَکَ</em></string></test> - <test rtl="True"><string><em>طَکَ</em>ف</string></test> - <test rtl="True"><string>ل<em>طَکَ</em>ف</string></test> - </testgroup> - </testgroup> - <testgroup label="Kaf form sequences with Zair"> - <testgroup label="teh + zair + kaf + zair"> - <test rtl="True"><string><em>تِکِ</em></string></test> - <test rtl="True"><string>ل<em>تِکِ</em></string></test> - <test rtl="True"><string><em>تِکِ</em>ف</string></test> - <test rtl="True"><string>ل<em>تِکِ</em>ف</string></test> - </testgroup> - <testgroup label="lam + zair + kaf + zair"> - <test rtl="True"><string><em>لِکِ</em></string></test> - <test rtl="True"><string>ل<em>لِکِ</em></string></test> - <test rtl="True"><string><em>لِکِ</em>ف</string></test> - <test rtl="True"><string>ل<em>لِکِ</em>ف</string></test> - </testgroup> - <testgroup label="beh + zair + kaf + zair"> - <test rtl="True"><string><em>بِکِ</em></string></test> - <test rtl="True"><string>ل<em>بِکِ</em></string></test> - <test rtl="True"><string><em>بِکِ</em>ف</string></test> - <test rtl="True"><string>ل<em>بِکِ</em>ف</string></test> - </testgroup> - <testgroup label="kaf + zair + kaf + zair"> - <test rtl="True"><string><em>کِکِ</em></string></test> - <test rtl="True"><string>ل<em>کِکِ</em></string></test> - <test rtl="True"><string><em>کِکِ</em>ف</string></test> - <test rtl="True"><string>ل<em>کِکِ</em>ف</string></test> - </testgroup> - <testgroup label="hehDo + zair + kaf + zair"> - <test rtl="True"><string><em>ھِکِ</em></string></test> - <test rtl="True"><string>ل<em>ھِکِ</em></string></test> - <test rtl="True"><string><em>ھِکِ</em>ف</string></test> - <test rtl="True"><string>ل<em>ھِکِ</em>ف</string></test> - </testgroup> - <testgroup label="hehGoal + zair + kaf + zair"> - <test rtl="True"><string><em>ہِکِ</em></string></test> - <test rtl="True"><string>ل<em>ہِکِ</em></string></test> - <test rtl="True"><string><em>ہِکِ</em>ف</string></test> - <test rtl="True"><string>ل<em>ہِکِ</em>ف</string></test> - </testgroup> - <testgroup label="feh + zair + kaf + zair"> - <test rtl="True"><string><em>فِکِ</em></string></test> - <test rtl="True"><string>ل<em>فِکِ</em></string></test> - <test rtl="True"><string><em>فِکِ</em>ف</string></test> - <test rtl="True"><string>ل<em>فِکِ</em>ف</string></test> - </testgroup> - <testgroup label="sad + zair + kaf + zair"> - <test rtl="True"><string><em>صِکِ</em></string></test> - <test rtl="True"><string>ل<em>صِکِ</em></string></test> - <test rtl="True"><string><em>صِکِ</em>ف</string></test> - <test rtl="True"><string>ل<em>صِکِ</em>ف</string></test> - </testgroup> - <testgroup label="meem + zair + kaf + zair"> - <test rtl="True"><string><em>مِکِ</em></string></test> - <test rtl="True"><string>ل<em>مِکِ</em></string></test> - <test rtl="True"><string><em>مِکِ</em>ف</string></test> - <test rtl="True"><string>ل<em>مِکِ</em>ف</string></test> - </testgroup> - <testgroup label="ain + zair + kaf + zair"> - <test rtl="True"><string><em>عِکِ</em></string></test> - <test rtl="True"><string>ل<em>عِکِ</em></string></test> - <test rtl="True"><string><em>عِکِ</em>ف</string></test> - <test rtl="True"><string>ل<em>عِکِ</em>ف</string></test> - </testgroup> - <testgroup label="jeem + zair + kaf + zair"> - <test rtl="True"><string><em>جِکِ</em></string></test> - <test rtl="True"><string>ل<em>جِکِ</em></string></test> - <test rtl="True"><string><em>جِکِ</em>ف</string></test> - <test rtl="True"><string>ل<em>جِکِ</em>ف</string></test> - </testgroup> - <testgroup label="gaf + zair + kaf + zair"> - <test rtl="True"><string><em>گِکِ</em></string></test> - <test rtl="True"><string>ل<em>گِکِ</em></string></test> - <test rtl="True"><string><em>گِکِ</em>ف</string></test> - <test rtl="True"><string>ل<em>گِکِ</em>ف</string></test> - </testgroup> - <testgroup label="seen + zair + kaf + zair"> - <test rtl="True"><string><em>سِکِ</em></string></test> - <test rtl="True"><string>ل<em>سِکِ</em></string></test> - <test rtl="True"><string><em>سِکِ</em>ف</string></test> - <test rtl="True"><string>ل<em>سِکِ</em>ف</string></test> - </testgroup> - <testgroup label="tah + zair + kaf + zair"> - <test rtl="True"><string><em>طِکِ</em></string></test> - <test rtl="True"><string>ل<em>طِکِ</em></string></test> - <test rtl="True"><string><em>طِکِ</em>ف</string></test> - <test rtl="True"><string>ل<em>طِکِ</em>ف</string></test> - </testgroup> - </testgroup> - <testgroup label="Gaf form sequences with Zabar"> - <testgroup label="teh + zabar + gaf + zabar"> - <test rtl="True"><string><em>تَگَ</em></string></test> - <test rtl="True"><string>ل<em>تَگَ</em></string></test> - <test rtl="True"><string><em>تَگَ</em>ف</string></test> - <test rtl="True"><string>ل<em>تَگَ</em>ف</string></test> - </testgroup> - <testgroup label="lam + zabar + gaf + zabar"> - <test rtl="True"><string><em>لَگَ</em></string></test> - <test rtl="True"><string>ل<em>لَگَ</em></string></test> - <test rtl="True"><string><em>لَگَ</em>ف</string></test> - <test rtl="True"><string>ل<em>لَگَ</em>ف</string></test> - </testgroup> - <testgroup label="beh + zabar + gaf + zabar"> - <test rtl="True"><string><em>بَگَ</em></string></test> - <test rtl="True"><string>ل<em>بَگَ</em></string></test> - <test rtl="True"><string><em>بَگَ</em>ف</string></test> - <test rtl="True"><string>ل<em>بَگَ</em>ف</string></test> - </testgroup> - <testgroup label="kaf + zabar + gaf + zabar"> - <test rtl="True"><string><em>کَگَ</em></string></test> - <test rtl="True"><string>ل<em>کَگَ</em></string></test> - <test rtl="True"><string><em>کَگَ</em>ف</string></test> - <test rtl="True"><string>ل<em>کَگَ</em>ف</string></test> - </testgroup> - <testgroup label="hehDo + zabar + gaf + zabar"> - <test rtl="True"><string><em>ھَگَ</em></string></test> - <test rtl="True"><string>ل<em>ھَگَ</em></string></test> - <test rtl="True"><string><em>ھَگَ</em>ف</string></test> - <test rtl="True"><string>ل<em>ھَگَ</em>ف</string></test> - </testgroup> - <testgroup label="hehGoal + zabar + gaf + zabar"> - <test rtl="True"><string><em>ہَگَ</em></string></test> - <test rtl="True"><string>ل<em>ہَگَ</em></string></test> - <test rtl="True"><string><em>ہَگَ</em>ف</string></test> - <test rtl="True"><string>ل<em>ہَگَ</em>ف</string></test> - </testgroup> - <testgroup label="feh + zabar + gaf + zabar"> - <test rtl="True"><string><em>فَگَ</em></string></test> - <test rtl="True"><string>ل<em>فَگَ</em></string></test> - <test rtl="True"><string><em>فَگَ</em>ف</string></test> - <test rtl="True"><string>ل<em>فَگَ</em>ف</string></test> - </testgroup> - <testgroup label="sad + zabar + gaf + zabar"> - <test rtl="True"><string><em>صَگَ</em></string></test> - <test rtl="True"><string>ل<em>صَگَ</em></string></test> - <test rtl="True"><string><em>صَگَ</em>ف</string></test> - <test rtl="True"><string>ل<em>صَگَ</em>ف</string></test> - </testgroup> - <testgroup label="meem + zabar + gaf + zabar"> - <test rtl="True"><string><em>مَگَ</em></string></test> - <test rtl="True"><string>ل<em>مَگَ</em></string></test> - <test rtl="True"><string><em>مَگَ</em>ف</string></test> - <test rtl="True"><string>ل<em>مَگَ</em>ف</string></test> - </testgroup> - <testgroup label="ain + zabar + gaf + zabar"> - <test rtl="True"><string><em>عَگَ</em></string></test> - <test rtl="True"><string>ل<em>عَگَ</em></string></test> - <test rtl="True"><string><em>عَگَ</em>ف</string></test> - <test rtl="True"><string>ل<em>عَگَ</em>ف</string></test> - </testgroup> - <testgroup label="jeem + zabar + gaf + zabar"> - <test rtl="True"><string><em>جَگَ</em></string></test> - <test rtl="True"><string>ل<em>جَگَ</em></string></test> - <test rtl="True"><string><em>جَگَ</em>ف</string></test> - <test rtl="True"><string>ل<em>جَگَ</em>ف</string></test> - </testgroup> - <testgroup label="gaf + zabar + gaf + zabar"> - <test rtl="True"><string><em>گَگَ</em></string></test> - <test rtl="True"><string>ل<em>گَگَ</em></string></test> - <test rtl="True"><string><em>گَگَ</em>ف</string></test> - <test rtl="True"><string>ل<em>گَگَ</em>ف</string></test> - </testgroup> - <testgroup label="seen + zabar + gaf + zabar"> - <test rtl="True"><string><em>سَگَ</em></string></test> - <test rtl="True"><string>ل<em>سَگَ</em></string></test> - <test rtl="True"><string><em>سَگَ</em>ف</string></test> - <test rtl="True"><string>ل<em>سَگَ</em>ف</string></test> - </testgroup> - <testgroup label="tah + zabar + gaf + zabar"> - <test rtl="True"><string><em>طَگَ</em></string></test> - <test rtl="True"><string>ل<em>طَگَ</em></string></test> - <test rtl="True"><string><em>طَگَ</em>ف</string></test> - <test rtl="True"><string>ل<em>طَگَ</em>ف</string></test> - </testgroup> - </testgroup> - <testgroup label="Gaf form sequences with Zair"> - <testgroup label="teh + zair + gaf + zair"> - <test rtl="True"><string><em>تِگِ</em></string></test> - <test rtl="True"><string>ل<em>تِگِ</em></string></test> - <test rtl="True"><string><em>تِگِ</em>ف</string></test> - <test rtl="True"><string>ل<em>تِگِ</em>ف</string></test> - </testgroup> - <testgroup label="lam + zair + gaf + zair"> - <test rtl="True"><string><em>لِگِ</em></string></test> - <test rtl="True"><string>ل<em>لِگِ</em></string></test> - <test rtl="True"><string><em>لِگِ</em>ف</string></test> - <test rtl="True"><string>ل<em>لِگِ</em>ف</string></test> - </testgroup> - <testgroup label="beh + zair + gaf + zair"> - <test rtl="True"><string><em>بِگِ</em></string></test> - <test rtl="True"><string>ل<em>بِگِ</em></string></test> - <test rtl="True"><string><em>بِگِ</em>ف</string></test> - <test rtl="True"><string>ل<em>بِگِ</em>ف</string></test> - </testgroup> - <testgroup label="kaf + zair + gaf + zair"> - <test rtl="True"><string><em>کِگِ</em></string></test> - <test rtl="True"><string>ل<em>کِگِ</em></string></test> - <test rtl="True"><string><em>کِگِ</em>ف</string></test> - <test rtl="True"><string>ل<em>کِگِ</em>ف</string></test> - </testgroup> - <testgroup label="hehDo + zair + gaf + zair"> - <test rtl="True"><string><em>ھِگِ</em></string></test> - <test rtl="True"><string>ل<em>ھِگِ</em></string></test> - <test rtl="True"><string><em>ھِگِ</em>ف</string></test> - <test rtl="True"><string>ل<em>ھِگِ</em>ف</string></test> - </testgroup> - <testgroup label="hehGoal + zair + gaf + zair"> - <test rtl="True"><string><em>ہِگِ</em></string></test> - <test rtl="True"><string>ل<em>ہِگِ</em></string></test> - <test rtl="True"><string><em>ہِگِ</em>ف</string></test> - <test rtl="True"><string>ل<em>ہِگِ</em>ف</string></test> - </testgroup> - <testgroup label="feh + zair + gaf + zair"> - <test rtl="True"><string><em>فِگِ</em></string></test> - <test rtl="True"><string>ل<em>فِگِ</em></string></test> - <test rtl="True"><string><em>فِگِ</em>ف</string></test> - <test rtl="True"><string>ل<em>فِگِ</em>ف</string></test> - </testgroup> - <testgroup label="sad + zair + gaf + zair"> - <test rtl="True"><string><em>صِگِ</em></string></test> - <test rtl="True"><string>ل<em>صِگِ</em></string></test> - <test rtl="True"><string><em>صِگِ</em>ف</string></test> - <test rtl="True"><string>ل<em>صِگِ</em>ف</string></test> - </testgroup> - <testgroup label="meem + zair + gaf + zair"> - <test rtl="True"><string><em>مِگِ</em></string></test> - <test rtl="True"><string>ل<em>مِگِ</em></string></test> - <test rtl="True"><string><em>مِگِ</em>ف</string></test> - <test rtl="True"><string>ل<em>مِگِ</em>ف</string></test> - </testgroup> - <testgroup label="ain + zair + gaf + zair"> - <test rtl="True"><string><em>عِگِ</em></string></test> - <test rtl="True"><string>ل<em>عِگِ</em></string></test> - <test rtl="True"><string><em>عِگِ</em>ف</string></test> - <test rtl="True"><string>ل<em>عِگِ</em>ف</string></test> - </testgroup> - <testgroup label="jeem + zair + gaf + zair"> - <test rtl="True"><string><em>جِگِ</em></string></test> - <test rtl="True"><string>ل<em>جِگِ</em></string></test> - <test rtl="True"><string><em>جِگِ</em>ف</string></test> - <test rtl="True"><string>ل<em>جِگِ</em>ف</string></test> - </testgroup> - <testgroup label="gaf + zair + gaf + zair"> - <test rtl="True"><string><em>گِگِ</em></string></test> - <test rtl="True"><string>ل<em>گِگِ</em></string></test> - <test rtl="True"><string><em>گِگِ</em>ف</string></test> - <test rtl="True"><string>ل<em>گِگِ</em>ف</string></test> - </testgroup> - <testgroup label="seen + zair + gaf + zair"> - <test rtl="True"><string><em>سِگِ</em></string></test> - <test rtl="True"><string>ل<em>سِگِ</em></string></test> - <test rtl="True"><string><em>سِگِ</em>ف</string></test> - <test rtl="True"><string>ل<em>سِگِ</em>ف</string></test> - </testgroup> - <testgroup label="tah + zair + gaf + zair"> - <test rtl="True"><string><em>طِگِ</em></string></test> - <test rtl="True"><string>ل<em>طِگِ</em></string></test> - <test rtl="True"><string><em>طِگِ</em>ف</string></test> - <test rtl="True"><string>ل<em>طِگِ</em>ف</string></test> - </testgroup> - </testgroup> - <testgroup label="Heh-Doachashmee form sequences with Zabar"> - <testgroup label="teh + zabar + hehDo + zabar"> - <test rtl="True"><string><em>تَھَ</em></string></test> - <test rtl="True"><string>ل<em>تَھَ</em></string></test> - <test rtl="True"><string><em>تَھَ</em>ف</string></test> - <test rtl="True"><string>ل<em>تَھَ</em>ف</string></test> - </testgroup> - <testgroup label="lam + zabar + hehDo + zabar"> - <test rtl="True"><string><em>لَھَ</em></string></test> - <test rtl="True"><string>ل<em>لَھَ</em></string></test> - <test rtl="True"><string><em>لَھَ</em>ف</string></test> - <test rtl="True"><string>ل<em>لَھَ</em>ف</string></test> - </testgroup> - <testgroup label="beh + zabar + hehDo + zabar"> - <test rtl="True"><string><em>بَھَ</em></string></test> - <test rtl="True"><string>ل<em>بَھَ</em></string></test> - <test rtl="True"><string><em>بَھَ</em>ف</string></test> - <test rtl="True"><string>ل<em>بَھَ</em>ف</string></test> - </testgroup> - <testgroup label="kaf + zabar + hehDo + zabar"> - <test rtl="True"><string><em>کَھَ</em></string></test> - <test rtl="True"><string>ل<em>کَھَ</em></string></test> - <test rtl="True"><string><em>کَھَ</em>ف</string></test> - <test rtl="True"><string>ل<em>کَھَ</em>ف</string></test> - </testgroup> - <testgroup label="hehDo + zabar + hehDo + zabar"> - <test rtl="True"><string><em>ھَھَ</em></string></test> - <test rtl="True"><string>ل<em>ھَھَ</em></string></test> - <test rtl="True"><string><em>ھَھَ</em>ف</string></test> - <test rtl="True"><string>ل<em>ھَھَ</em>ف</string></test> - </testgroup> - <testgroup label="hehGoal + zabar + hehDo + zabar"> - <test rtl="True"><string><em>ہَھَ</em></string></test> - <test rtl="True"><string>ل<em>ہَھَ</em></string></test> - <test rtl="True"><string><em>ہَھَ</em>ف</string></test> - <test rtl="True"><string>ل<em>ہَھَ</em>ف</string></test> - </testgroup> - <testgroup label="feh + zabar + hehDo + zabar"> - <test rtl="True"><string><em>فَھَ</em></string></test> - <test rtl="True"><string>ل<em>فَھَ</em></string></test> - <test rtl="True"><string><em>فَھَ</em>ف</string></test> - <test rtl="True"><string>ل<em>فَھَ</em>ف</string></test> - </testgroup> - <testgroup label="sad + zabar + hehDo + zabar"> - <test rtl="True"><string><em>صَھَ</em></string></test> - <test rtl="True"><string>ل<em>صَھَ</em></string></test> - <test rtl="True"><string><em>صَھَ</em>ف</string></test> - <test rtl="True"><string>ل<em>صَھَ</em>ف</string></test> - </testgroup> - <testgroup label="meem + zabar + hehDo + zabar"> - <test rtl="True"><string><em>مَھَ</em></string></test> - <test rtl="True"><string>ل<em>مَھَ</em></string></test> - <test rtl="True"><string><em>مَھَ</em>ف</string></test> - <test rtl="True"><string>ل<em>مَھَ</em>ف</string></test> - </testgroup> - <testgroup label="ain + zabar + hehDo + zabar"> - <test rtl="True"><string><em>عَھَ</em></string></test> - <test rtl="True"><string>ل<em>عَھَ</em></string></test> - <test rtl="True"><string><em>عَھَ</em>ف</string></test> - <test rtl="True"><string>ل<em>عَھَ</em>ف</string></test> - </testgroup> - <testgroup label="jeem + zabar + hehDo + zabar"> - <test rtl="True"><string><em>جَھَ</em></string></test> - <test rtl="True"><string>ل<em>جَھَ</em></string></test> - <test rtl="True"><string><em>جَھَ</em>ف</string></test> - <test rtl="True"><string>ل<em>جَھَ</em>ف</string></test> - </testgroup> - <testgroup label="gaf + zabar + hehDo + zabar"> - <test rtl="True"><string><em>گَھَ</em></string></test> - <test rtl="True"><string>ل<em>گَھَ</em></string></test> - <test rtl="True"><string><em>گَھَ</em>ف</string></test> - <test rtl="True"><string>ل<em>گَھَ</em>ف</string></test> - </testgroup> - <testgroup label="seen + zabar + hehDo + zabar"> - <test rtl="True"><string><em>سَھَ</em></string></test> - <test rtl="True"><string>ل<em>سَھَ</em></string></test> - <test rtl="True"><string><em>سَھَ</em>ف</string></test> - <test rtl="True"><string>ل<em>سَھَ</em>ف</string></test> - </testgroup> - <testgroup label="tah + zabar + hehDo + zabar"> - <test rtl="True"><string><em>طَھَ</em></string></test> - <test rtl="True"><string>ل<em>طَھَ</em></string></test> - <test rtl="True"><string><em>طَھَ</em>ف</string></test> - <test rtl="True"><string>ل<em>طَھَ</em>ف</string></test> - </testgroup> - </testgroup> - <testgroup label="Heh-Doachashmee form sequences with Zair"> - <testgroup label="teh + zair + hehDo + zair"> - <test rtl="True"><string><em>تِھِ</em></string></test> - <test rtl="True"><string>ل<em>تِھِ</em></string></test> - <test rtl="True"><string><em>تِھِ</em>ف</string></test> - <test rtl="True"><string>ل<em>تِھِ</em>ف</string></test> - </testgroup> - <testgroup label="lam + zair + hehDo + zair"> - <test rtl="True"><string><em>لِھِ</em></string></test> - <test rtl="True"><string>ل<em>لِھِ</em></string></test> - <test rtl="True"><string><em>لِھِ</em>ف</string></test> - <test rtl="True"><string>ل<em>لِھِ</em>ف</string></test> - </testgroup> - <testgroup label="beh + zair + hehDo + zair"> - <test rtl="True"><string><em>بِھِ</em></string></test> - <test rtl="True"><string>ل<em>بِھِ</em></string></test> - <test rtl="True"><string><em>بِھِ</em>ف</string></test> - <test rtl="True"><string>ل<em>بِھِ</em>ف</string></test> - </testgroup> - <testgroup label="kaf + zair + hehDo + zair"> - <test rtl="True"><string><em>کِھِ</em></string></test> - <test rtl="True"><string>ل<em>کِھِ</em></string></test> - <test rtl="True"><string><em>کِھِ</em>ف</string></test> - <test rtl="True"><string>ل<em>کِھِ</em>ف</string></test> - </testgroup> - <testgroup label="hehDo + zair + hehDo + zair"> - <test rtl="True"><string><em>ھِھِ</em></string></test> - <test rtl="True"><string>ل<em>ھِھِ</em></string></test> - <test rtl="True"><string><em>ھِھِ</em>ف</string></test> - <test rtl="True"><string>ل<em>ھِھِ</em>ف</string></test> - </testgroup> - <testgroup label="hehGoal + zair + hehDo + zair"> - <test rtl="True"><string><em>ہِھِ</em></string></test> - <test rtl="True"><string>ل<em>ہِھِ</em></string></test> - <test rtl="True"><string><em>ہِھِ</em>ف</string></test> - <test rtl="True"><string>ل<em>ہِھِ</em>ف</string></test> - </testgroup> - <testgroup label="feh + zair + hehDo + zair"> - <test rtl="True"><string><em>فِھِ</em></string></test> - <test rtl="True"><string>ل<em>فِھِ</em></string></test> - <test rtl="True"><string><em>فِھِ</em>ف</string></test> - <test rtl="True"><string>ل<em>فِھِ</em>ف</string></test> - </testgroup> - <testgroup label="sad + zair + hehDo + zair"> - <test rtl="True"><string><em>صِھِ</em></string></test> - <test rtl="True"><string>ل<em>صِھِ</em></string></test> - <test rtl="True"><string><em>صِھِ</em>ف</string></test> - <test rtl="True"><string>ل<em>صِھِ</em>ف</string></test> - </testgroup> - <testgroup label="meem + zair + hehDo + zair"> - <test rtl="True"><string><em>مِھِ</em></string></test> - <test rtl="True"><string>ل<em>مِھِ</em></string></test> - <test rtl="True"><string><em>مِھِ</em>ف</string></test> - <test rtl="True"><string>ل<em>مِھِ</em>ف</string></test> - </testgroup> - <testgroup label="ain + zair + hehDo + zair"> - <test rtl="True"><string><em>عِھِ</em></string></test> - <test rtl="True"><string>ل<em>عِھِ</em></string></test> - <test rtl="True"><string><em>عِھِ</em>ف</string></test> - <test rtl="True"><string>ل<em>عِھِ</em>ف</string></test> - </testgroup> - <testgroup label="jeem + zair + hehDo + zair"> - <test rtl="True"><string><em>جِھِ</em></string></test> - <test rtl="True"><string>ل<em>جِھِ</em></string></test> - <test rtl="True"><string><em>جِھِ</em>ف</string></test> - <test rtl="True"><string>ل<em>جِھِ</em>ف</string></test> - </testgroup> - <testgroup label="gaf + zair + hehDo + zair"> - <test rtl="True"><string><em>گِھِ</em></string></test> - <test rtl="True"><string>ل<em>گِھِ</em></string></test> - <test rtl="True"><string><em>گِھِ</em>ف</string></test> - <test rtl="True"><string>ل<em>گِھِ</em>ف</string></test> - </testgroup> - <testgroup label="seen + zair + hehDo + zair"> - <test rtl="True"><string><em>سِھِ</em></string></test> - <test rtl="True"><string>ل<em>سِھِ</em></string></test> - <test rtl="True"><string><em>سِھِ</em>ف</string></test> - <test rtl="True"><string>ل<em>سِھِ</em>ف</string></test> - </testgroup> - <testgroup label="tah + zair + hehDo + zair"> - <test rtl="True"><string><em>طِھِ</em></string></test> - <test rtl="True"><string>ل<em>طِھِ</em></string></test> - <test rtl="True"><string><em>طِھِ</em>ف</string></test> - <test rtl="True"><string>ل<em>طِھِ</em>ف</string></test> - </testgroup> - </testgroup> - <testgroup label="Heh-Goal form sequences with Zabar"> - <testgroup label="teh + zabar + hehGoal + zabar"> - <test rtl="True"><string><em>تَہَ</em></string></test> - <test rtl="True"><string>ل<em>تَہَ</em></string></test> - <test rtl="True"><string><em>تَہَ</em>ف</string></test> - <test rtl="True"><string>ل<em>تَہَ</em>ف</string></test> - </testgroup> - <testgroup label="lam + zabar + hehGoal + zabar"> - <test rtl="True"><string><em>لَہَ</em></string></test> - <test rtl="True"><string>ل<em>لَہَ</em></string></test> - <test rtl="True"><string><em>لَہَ</em>ف</string></test> - <test rtl="True"><string>ل<em>لَہَ</em>ف</string></test> - </testgroup> - <testgroup label="beh + zabar + hehGoal + zabar"> - <test rtl="True"><string><em>بَہَ</em></string></test> - <test rtl="True"><string>ل<em>بَہَ</em></string></test> - <test rtl="True"><string><em>بَہَ</em>ف</string></test> - <test rtl="True"><string>ل<em>بَہَ</em>ف</string></test> - </testgroup> - <testgroup label="kaf + zabar + hehGoal + zabar"> - <test rtl="True"><string><em>کَہَ</em></string></test> - <test rtl="True"><string>ل<em>کَہَ</em></string></test> - <test rtl="True"><string><em>کَہَ</em>ف</string></test> - <test rtl="True"><string>ل<em>کَہَ</em>ف</string></test> - </testgroup> - <testgroup label="hehDo + zabar + hehGoal + zabar"> - <test rtl="True"><string><em>ھَہَ</em></string></test> - <test rtl="True"><string>ل<em>ھَہَ</em></string></test> - <test rtl="True"><string><em>ھَہَ</em>ف</string></test> - <test rtl="True"><string>ل<em>ھَہَ</em>ف</string></test> - </testgroup> - <testgroup label="hehGoal + zabar + hehGoal + zabar"> - <test rtl="True"><string><em>ہَہَ</em></string></test> - <test rtl="True"><string>ل<em>ہَہَ</em></string></test> - <test rtl="True"><string><em>ہَہَ</em>ف</string></test> - <test rtl="True"><string>ل<em>ہَہَ</em>ف</string></test> - </testgroup> - <testgroup label="feh + zabar + hehGoal + zabar"> - <test rtl="True"><string><em>فَہَ</em></string></test> - <test rtl="True"><string>ل<em>فَہَ</em></string></test> - <test rtl="True"><string><em>فَہَ</em>ف</string></test> - <test rtl="True"><string>ل<em>فَہَ</em>ف</string></test> - </testgroup> - <testgroup label="sad + zabar + hehGoal + zabar"> - <test rtl="True"><string><em>صَہَ</em></string></test> - <test rtl="True"><string>ل<em>صَہَ</em></string></test> - <test rtl="True"><string><em>صَہَ</em>ف</string></test> - <test rtl="True"><string>ل<em>صَہَ</em>ف</string></test> - </testgroup> - <testgroup label="meem + zabar + hehGoal + zabar"> - <test rtl="True"><string><em>مَہَ</em></string></test> - <test rtl="True"><string>ل<em>مَہَ</em></string></test> - <test rtl="True"><string><em>مَہَ</em>ف</string></test> - <test rtl="True"><string>ل<em>مَہَ</em>ف</string></test> - </testgroup> - <testgroup label="ain + zabar + hehGoal + zabar"> - <test rtl="True"><string><em>عَہَ</em></string></test> - <test rtl="True"><string>ل<em>عَہَ</em></string></test> - <test rtl="True"><string><em>عَہَ</em>ف</string></test> - <test rtl="True"><string>ل<em>عَہَ</em>ف</string></test> - </testgroup> - <testgroup label="jeem + zabar + hehGoal + zabar"> - <test rtl="True"><string><em>جَہَ</em></string></test> - <test rtl="True"><string>ل<em>جَہَ</em></string></test> - <test rtl="True"><string><em>جَہَ</em>ف</string></test> - <test rtl="True"><string>ل<em>جَہَ</em>ف</string></test> - </testgroup> - <testgroup label="gaf + zabar + hehGoal + zabar"> - <test rtl="True"><string><em>گَہَ</em></string></test> - <test rtl="True"><string>ل<em>گَہَ</em></string></test> - <test rtl="True"><string><em>گَہَ</em>ف</string></test> - <test rtl="True"><string>ل<em>گَہَ</em>ف</string></test> - </testgroup> - <testgroup label="seen + zabar + hehGoal + zabar"> - <test rtl="True"><string><em>سَہَ</em></string></test> - <test rtl="True"><string>ل<em>سَہَ</em></string></test> - <test rtl="True"><string><em>سَہَ</em>ف</string></test> - <test rtl="True"><string>ل<em>سَہَ</em>ف</string></test> - </testgroup> - <testgroup label="tah + zabar + hehGoal + zabar"> - <test rtl="True"><string><em>طَہَ</em></string></test> - <test rtl="True"><string>ل<em>طَہَ</em></string></test> - <test rtl="True"><string><em>طَہَ</em>ف</string></test> - <test rtl="True"><string>ل<em>طَہَ</em>ف</string></test> - </testgroup> - </testgroup> - <testgroup label="Heh-Goal form sequences with Zair"> - <testgroup label="teh + zair + hehGoal + zair"> - <test rtl="True"><string><em>تِہِ</em></string></test> - <test rtl="True"><string>ل<em>تِہِ</em></string></test> - <test rtl="True"><string><em>تِہِ</em>ف</string></test> - <test rtl="True"><string>ل<em>تِہِ</em>ف</string></test> - </testgroup> - <testgroup label="lam + zair + hehGoal + zair"> - <test rtl="True"><string><em>لِہِ</em></string></test> - <test rtl="True"><string>ل<em>لِہِ</em></string></test> - <test rtl="True"><string><em>لِہِ</em>ف</string></test> - <test rtl="True"><string>ل<em>لِہِ</em>ف</string></test> - </testgroup> - <testgroup label="beh + zair + hehGoal + zair"> - <test rtl="True"><string><em>بِہِ</em></string></test> - <test rtl="True"><string>ل<em>بِہِ</em></string></test> - <test rtl="True"><string><em>بِہِ</em>ف</string></test> - <test rtl="True"><string>ل<em>بِہِ</em>ف</string></test> - </testgroup> - <testgroup label="kaf + zair + hehGoal + zair"> - <test rtl="True"><string><em>کِہِ</em></string></test> - <test rtl="True"><string>ل<em>کِہِ</em></string></test> - <test rtl="True"><string><em>کِہِ</em>ف</string></test> - <test rtl="True"><string>ل<em>کِہِ</em>ف</string></test> - </testgroup> - <testgroup label="hehDo + zair + hehGoal + zair"> - <test rtl="True"><string><em>ھِہِ</em></string></test> - <test rtl="True"><string>ل<em>ھِہِ</em></string></test> - <test rtl="True"><string><em>ھِہِ</em>ف</string></test> - <test rtl="True"><string>ل<em>ھِہِ</em>ف</string></test> - </testgroup> - <testgroup label="hehGoal + zair + hehGoal + zair"> - <test rtl="True"><string><em>ہِہِ</em></string></test> - <test rtl="True"><string>ل<em>ہِہِ</em></string></test> - <test rtl="True"><string><em>ہِہِ</em>ف</string></test> - <test rtl="True"><string>ل<em>ہِہِ</em>ف</string></test> - </testgroup> - <testgroup label="feh + zair + hehGoal + zair"> - <test rtl="True"><string><em>فِہِ</em></string></test> - <test rtl="True"><string>ل<em>فِہِ</em></string></test> - <test rtl="True"><string><em>فِہِ</em>ف</string></test> - <test rtl="True"><string>ل<em>فِہِ</em>ف</string></test> - </testgroup> - <testgroup label="sad + zair + hehGoal + zair"> - <test rtl="True"><string><em>صِہِ</em></string></test> - <test rtl="True"><string>ل<em>صِہِ</em></string></test> - <test rtl="True"><string><em>صِہِ</em>ف</string></test> - <test rtl="True"><string>ل<em>صِہِ</em>ف</string></test> - </testgroup> - <testgroup label="meem + zair + hehGoal + zair"> - <test rtl="True"><string><em>مِہِ</em></string></test> - <test rtl="True"><string>ل<em>مِہِ</em></string></test> - <test rtl="True"><string><em>مِہِ</em>ف</string></test> - <test rtl="True"><string>ل<em>مِہِ</em>ف</string></test> - </testgroup> - <testgroup label="ain + zair + hehGoal + zair"> - <test rtl="True"><string><em>عِہِ</em></string></test> - <test rtl="True"><string>ل<em>عِہِ</em></string></test> - <test rtl="True"><string><em>عِہِ</em>ف</string></test> - <test rtl="True"><string>ل<em>عِہِ</em>ف</string></test> - </testgroup> - <testgroup label="jeem + zair + hehGoal + zair"> - <test rtl="True"><string><em>جِہِ</em></string></test> - <test rtl="True"><string>ل<em>جِہِ</em></string></test> - <test rtl="True"><string><em>جِہِ</em>ف</string></test> - <test rtl="True"><string>ل<em>جِہِ</em>ف</string></test> - </testgroup> - <testgroup label="gaf + zair + hehGoal + zair"> - <test rtl="True"><string><em>گِہِ</em></string></test> - <test rtl="True"><string>ل<em>گِہِ</em></string></test> - <test rtl="True"><string><em>گِہِ</em>ف</string></test> - <test rtl="True"><string>ل<em>گِہِ</em>ف</string></test> - </testgroup> - <testgroup label="seen + zair + hehGoal + zair"> - <test rtl="True"><string><em>سِہِ</em></string></test> - <test rtl="True"><string>ل<em>سِہِ</em></string></test> - <test rtl="True"><string><em>سِہِ</em>ف</string></test> - <test rtl="True"><string>ل<em>سِہِ</em>ف</string></test> - </testgroup> - <testgroup label="tah + zair + hehGoal + zair"> - <test rtl="True"><string><em>طِہِ</em></string></test> - <test rtl="True"><string>ل<em>طِہِ</em></string></test> - <test rtl="True"><string><em>طِہِ</em>ف</string></test> - <test rtl="True"><string>ل<em>طِہِ</em>ف</string></test> - </testgroup> - </testgroup> - <testgroup label="Teh-marbuta form sequences with Zabar"> - <testgroup label="teh + zabar + tehMarbuta + zabar"> - <test rtl="True"><string><em>تَةَ</em></string></test> - <test rtl="True"><string>ل<em>تَةَ</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>لَةَ</em></string></test> - <test rtl="True"><string>ل<em>لَةَ</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>بَةَ</em></string></test> - <test rtl="True"><string>ل<em>بَةَ</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>کَةَ</em></string></test> - <test rtl="True"><string>ل<em>کَةَ</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>ھَةَ</em></string></test> - <test rtl="True"><string>ل<em>ھَةَ</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>ہَةَ</em></string></test> - <test rtl="True"><string>ل<em>ہَةَ</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>فَةَ</em></string></test> - <test rtl="True"><string>ل<em>فَةَ</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>صَةَ</em></string></test> - <test rtl="True"><string>ل<em>صَةَ</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>مَةَ</em></string></test> - <test rtl="True"><string>ل<em>مَةَ</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>عَةَ</em></string></test> - <test rtl="True"><string>ل<em>عَةَ</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>جَةَ</em></string></test> - <test rtl="True"><string>ل<em>جَةَ</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>گَةَ</em></string></test> - <test rtl="True"><string>ل<em>گَةَ</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>سَةَ</em></string></test> - <test rtl="True"><string>ل<em>سَةَ</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>طَةَ</em></string></test> - <test rtl="True"><string>ل<em>طَةَ</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>تِةِ</em></string></test> - <test rtl="True"><string>ل<em>تِةِ</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>لِةِ</em></string></test> - <test rtl="True"><string>ل<em>لِةِ</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>بِةِ</em></string></test> - <test rtl="True"><string>ل<em>بِةِ</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>کِةِ</em></string></test> - <test rtl="True"><string>ل<em>کِةِ</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>ھِةِ</em></string></test> - <test rtl="True"><string>ل<em>ھِةِ</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>ہِةِ</em></string></test> - <test rtl="True"><string>ل<em>ہِةِ</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>فِةِ</em></string></test> - <test rtl="True"><string>ل<em>فِةِ</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>صِةِ</em></string></test> - <test rtl="True"><string>ل<em>صِةِ</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>مِةِ</em></string></test> - <test rtl="True"><string>ل<em>مِةِ</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>عِةِ</em></string></test> - <test rtl="True"><string>ل<em>عِةِ</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>جِةِ</em></string></test> - <test rtl="True"><string>ل<em>جِةِ</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>گِةِ</em></string></test> - <test rtl="True"><string>ل<em>گِةِ</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>سِةِ</em></string></test> - <test rtl="True"><string>ل<em>سِةِ</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>طِةِ</em></string></test> - <test rtl="True"><string>ل<em>طِةِ</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>تَیَ</em></string></test> - <test rtl="True"><string>ل<em>تَیَ</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>لَیَ</em></string></test> - <test rtl="True"><string>ل<em>لَیَ</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>بَیَ</em></string></test> - <test rtl="True"><string>ل<em>بَیَ</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>کَیَ</em></string></test> - <test rtl="True"><string>ل<em>کَیَ</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>ھَیَ</em></string></test> - <test rtl="True"><string>ل<em>ھَیَ</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>ہَیَ</em></string></test> - <test rtl="True"><string>ل<em>ہَیَ</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>فَیَ</em></string></test> - <test rtl="True"><string>ل<em>فَیَ</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>صَیَ</em></string></test> - <test rtl="True"><string>ل<em>صَیَ</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>مَیَ</em></string></test> - <test rtl="True"><string>ل<em>مَیَ</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>عَیَ</em></string></test> - <test rtl="True"><string>ل<em>عَیَ</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>جَیَ</em></string></test> - <test rtl="True"><string>ل<em>جَیَ</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>گَیَ</em></string></test> - <test rtl="True"><string>ل<em>گَیَ</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>سَیَ</em></string></test> - <test rtl="True"><string>ل<em>سَیَ</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>طَیَ</em></string></test> - <test rtl="True"><string>ل<em>طَیَ</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>تِیِ</em></string></test> - <test rtl="True"><string>ل<em>تِیِ</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>لِیِ</em></string></test> - <test rtl="True"><string>ل<em>لِیِ</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>بِیِ</em></string></test> - <test rtl="True"><string>ل<em>بِیِ</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>کِیِ</em></string></test> - <test rtl="True"><string>ل<em>کِیِ</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>ھِیِ</em></string></test> - <test rtl="True"><string>ل<em>ھِیِ</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>ہِیِ</em></string></test> - <test rtl="True"><string>ل<em>ہِیِ</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>فِیِ</em></string></test> - <test rtl="True"><string>ل<em>فِیِ</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>صِیِ</em></string></test> - <test rtl="True"><string>ل<em>صِیِ</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>مِیِ</em></string></test> - <test rtl="True"><string>ل<em>مِیِ</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>عِیِ</em></string></test> - <test rtl="True"><string>ل<em>عِیِ</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>جِیِ</em></string></test> - <test rtl="True"><string>ل<em>جِیِ</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>گِیِ</em></string></test> - <test rtl="True"><string>ل<em>گِیِ</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>سِیِ</em></string></test> - <test rtl="True"><string>ل<em>سِیِ</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>طِیِ</em></string></test> - <test rtl="True"><string>ل<em>طِیِ</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>تَےَ</em></string></test> - <test rtl="True"><string>ل<em>تَےَ</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>لَےَ</em></string></test> - <test rtl="True"><string>ل<em>لَےَ</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>بَےَ</em></string></test> - <test rtl="True"><string>ل<em>بَےَ</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>کَےَ</em></string></test> - <test rtl="True"><string>ل<em>کَےَ</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>ھَےَ</em></string></test> - <test rtl="True"><string>ل<em>ھَےَ</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>ہَےَ</em></string></test> - <test rtl="True"><string>ل<em>ہَےَ</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>فَےَ</em></string></test> - <test rtl="True"><string>ل<em>فَےَ</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>صَےَ</em></string></test> - <test rtl="True"><string>ل<em>صَےَ</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>مَےَ</em></string></test> - <test rtl="True"><string>ل<em>مَےَ</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>عَےَ</em></string></test> - <test rtl="True"><string>ل<em>عَےَ</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>جَےَ</em></string></test> - <test rtl="True"><string>ل<em>جَےَ</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>گَےَ</em></string></test> - <test rtl="True"><string>ل<em>گَےَ</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>سَےَ</em></string></test> - <test rtl="True"><string>ل<em>سَےَ</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>طَےَ</em></string></test> - <test rtl="True"><string>ل<em>طَےَ</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>تِےِ</em></string></test> - <test rtl="True"><string>ل<em>تِےِ</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>لِےِ</em></string></test> - <test rtl="True"><string>ل<em>لِےِ</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>بِےِ</em></string></test> - <test rtl="True"><string>ل<em>بِےِ</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>کِےِ</em></string></test> - <test rtl="True"><string>ل<em>کِےِ</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>ھِےِ</em></string></test> - <test rtl="True"><string>ل<em>ھِےِ</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>ہِےِ</em></string></test> - <test rtl="True"><string>ل<em>ہِےِ</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>فِےِ</em></string></test> - <test rtl="True"><string>ل<em>فِےِ</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>صِےِ</em></string></test> - <test rtl="True"><string>ل<em>صِےِ</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>مِےِ</em></string></test> - <test rtl="True"><string>ل<em>مِےِ</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>عِےِ</em></string></test> - <test rtl="True"><string>ل<em>عِےِ</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>جِےِ</em></string></test> - <test rtl="True"><string>ل<em>جِےِ</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>گِےِ</em></string></test> - <test rtl="True"><string>ل<em>گِےِ</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>سِےِ</em></string></test> - <test rtl="True"><string>ل<em>سِےِ</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>طِےِ</em></string></test> - <test rtl="True"><string>ل<em>طِےِ</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>تَبَبَ</em></string></test> - <test rtl="True"><string>ل<em>تَبَبَ</em></string></test> - <test rtl="True"><string><em>تَبَبَ</em>ف</string></test> - <test rtl="True"><string>ل<em>تَبَبَ</em>ف</string></test> - </testgroup> - <testgroup label="teh + zabar + teh + zabar + teh + zabar"> - <test rtl="True"><string><em>تَتَتَ</em></string></test> - <test rtl="True"><string>ل<em>تَتَتَ</em></string></test> - <test rtl="True"><string><em>تَتَتَ</em>ف</string></test> - <test rtl="True"><string>ل<em>تَتَتَ</em>ف</string></test> - </testgroup> - <testgroup label="teh + zabar + beh + zabar + beh + zabar + beh + zabar"> - <test rtl="True"><string><em>تَبَبَبَ</em></string></test> - <test rtl="True"><string>ل<em>تَبَبَبَ</em></string></test> - <test rtl="True"><string><em>تَبَبَبَ</em>ف</string></test> - <test rtl="True"><string>ل<em>تَبَبَبَ</em>ف</string></test> - </testgroup> - <testgroup label="teh + zabar + teh + zabar + teh + zabar + teh + zabar"> - <test rtl="True"><string><em>تَتَتَتَ</em></string></test> - <test rtl="True"><string>ل<em>تَتَتَتَ</em></string></test> - <test rtl="True"><string><em>تَتَتَتَ</em>ف</string></test> - <test rtl="True"><string>ل<em>تَتَتَتَ</em>ف</string></test> - </testgroup> - <testgroup label="lam + zabar + beh + zabar + beh + zabar"> - <test rtl="True"><string><em>لَبَبَ</em></string></test> - <test rtl="True"><string>ل<em>لَبَبَ</em></string></test> - <test rtl="True"><string><em>لَبَبَ</em>ف</string></test> - <test rtl="True"><string>ل<em>لَبَبَ</em>ف</string></test> - </testgroup> - <testgroup label="lam + zabar + teh + zabar + teh + zabar"> - <test rtl="True"><string><em>لَتَتَ</em></string></test> - <test rtl="True"><string>ل<em>لَتَتَ</em></string></test> - <test rtl="True"><string><em>لَتَتَ</em>ف</string></test> - <test rtl="True"><string>ل<em>لَتَتَ</em>ف</string></test> - </testgroup> - <testgroup label="lam + zabar + beh + zabar + beh + zabar + beh + zabar"> - <test rtl="True"><string><em>لَبَبَبَ</em></string></test> - <test rtl="True"><string>ل<em>لَبَبَبَ</em></string></test> - <test rtl="True"><string><em>لَبَبَبَ</em>ف</string></test> - <test rtl="True"><string>ل<em>لَبَبَبَ</em>ف</string></test> - </testgroup> - <testgroup label="lam + zabar + teh + zabar + teh + zabar + teh + zabar"> - <test rtl="True"><string><em>لَتَتَتَ</em></string></test> - <test rtl="True"><string>ل<em>لَتَتَتَ</em></string></test> - <test rtl="True"><string><em>لَتَتَتَ</em>ف</string></test> - <test rtl="True"><string>ل<em>لَتَتَتَ</em>ف</string></test> - </testgroup> - <testgroup label="beh + zabar + beh + zabar + beh + zabar"> - <test rtl="True"><string><em>بَبَبَ</em></string></test> - <test rtl="True"><string>ل<em>بَبَبَ</em></string></test> - <test rtl="True"><string><em>بَبَبَ</em>ف</string></test> - <test rtl="True"><string>ل<em>بَبَبَ</em>ف</string></test> - </testgroup> - <testgroup label="beh + zabar + teh + zabar + teh + zabar"> - <test rtl="True"><string><em>بَتَتَ</em></string></test> - <test rtl="True"><string>ل<em>بَتَتَ</em></string></test> - <test rtl="True"><string><em>بَتَتَ</em>ف</string></test> - <test rtl="True"><string>ل<em>بَتَتَ</em>ف</string></test> - </testgroup> - <testgroup label="beh + zabar + beh + zabar + beh + zabar + beh + zabar"> - <test rtl="True"><string><em>بَبَبَبَ</em></string></test> - <test rtl="True"><string>ل<em>بَبَبَبَ</em></string></test> - <test rtl="True"><string><em>بَبَبَبَ</em>ف</string></test> - <test rtl="True"><string>ل<em>بَبَبَبَ</em>ف</string></test> - </testgroup> - <testgroup label="beh + zabar + teh + zabar + teh + zabar + teh + zabar"> - <test rtl="True"><string><em>بَتَتَتَ</em></string></test> - <test rtl="True"><string>ل<em>بَتَتَتَ</em></string></test> - <test rtl="True"><string><em>بَتَتَتَ</em>ف</string></test> - <test rtl="True"><string>ل<em>بَتَتَتَ</em>ف</string></test> - </testgroup> - <testgroup label="kaf + zabar + beh + zabar + beh + zabar"> - <test rtl="True"><string><em>کَبَبَ</em></string></test> - <test rtl="True"><string>ل<em>کَبَبَ</em></string></test> - <test rtl="True"><string><em>کَبَبَ</em>ف</string></test> - <test rtl="True"><string>ل<em>کَبَبَ</em>ف</string></test> - </testgroup> - <testgroup label="kaf + zabar + teh + zabar + teh + zabar"> - <test rtl="True"><string><em>کَتَتَ</em></string></test> - <test rtl="True"><string>ل<em>کَتَتَ</em></string></test> - <test rtl="True"><string><em>کَتَتَ</em>ف</string></test> - <test rtl="True"><string>ل<em>کَتَتَ</em>ف</string></test> - </testgroup> - <testgroup label="kaf + zabar + beh + zabar + beh + zabar + beh + zabar"> - <test rtl="True"><string><em>کَبَبَبَ</em></string></test> - <test rtl="True"><string>ل<em>کَبَبَبَ</em></string></test> - <test rtl="True"><string><em>کَبَبَبَ</em>ف</string></test> - <test rtl="True"><string>ل<em>کَبَبَبَ</em>ف</string></test> - </testgroup> - <testgroup label="kaf + zabar + teh + zabar + teh + zabar + teh + zabar"> - <test rtl="True"><string><em>کَتَتَتَ</em></string></test> - <test rtl="True"><string>ل<em>کَتَتَتَ</em></string></test> - <test rtl="True"><string><em>کَتَتَتَ</em>ف</string></test> - <test rtl="True"><string>ل<em>کَتَتَتَ</em>ف</string></test> - </testgroup> - <testgroup label="hehDo + zabar + beh + zabar + beh + zabar"> - <test rtl="True"><string><em>ھَبَبَ</em></string></test> - <test rtl="True"><string>ل<em>ھَبَبَ</em></string></test> - <test rtl="True"><string><em>ھَبَبَ</em>ف</string></test> - <test rtl="True"><string>ل<em>ھَبَبَ</em>ف</string></test> - </testgroup> - <testgroup label="hehDo + zabar + teh + zabar + teh + zabar"> - <test rtl="True"><string><em>ھَتَتَ</em></string></test> - <test rtl="True"><string>ل<em>ھَتَتَ</em></string></test> - <test rtl="True"><string><em>ھَتَتَ</em>ف</string></test> - <test rtl="True"><string>ل<em>ھَتَتَ</em>ف</string></test> - </testgroup> - <testgroup label="hehDo + zabar + beh + zabar + beh + zabar + beh + zabar"> - <test rtl="True"><string><em>ھَبَبَبَ</em></string></test> - <test rtl="True"><string>ل<em>ھَبَبَبَ</em></string></test> - <test rtl="True"><string><em>ھَبَبَبَ</em>ف</string></test> - <test rtl="True"><string>ل<em>ھَبَبَبَ</em>ف</string></test> - </testgroup> - <testgroup label="hehDo + zabar + teh + zabar + teh + zabar + teh + zabar"> - <test rtl="True"><string><em>ھَتَتَتَ</em></string></test> - <test rtl="True"><string>ل<em>ھَتَتَتَ</em></string></test> - <test rtl="True"><string><em>ھَتَتَتَ</em>ف</string></test> - <test rtl="True"><string>ل<em>ھَتَتَتَ</em>ف</string></test> - </testgroup> - <testgroup label="hehGoal + zabar + beh + zabar + beh + zabar"> - <test rtl="True"><string><em>ہَبَبَ</em></string></test> - <test rtl="True"><string>ل<em>ہَبَبَ</em></string></test> - <test rtl="True"><string><em>ہَبَبَ</em>ف</string></test> - <test rtl="True"><string>ل<em>ہَبَبَ</em>ف</string></test> - </testgroup> - <testgroup label="hehGoal + zabar + teh + zabar + teh + zabar"> - <test rtl="True"><string><em>ہَتَتَ</em></string></test> - <test rtl="True"><string>ل<em>ہَتَتَ</em></string></test> - <test rtl="True"><string><em>ہَتَتَ</em>ف</string></test> - <test rtl="True"><string>ل<em>ہَتَتَ</em>ف</string></test> - </testgroup> - <testgroup label="hehGoal + zabar + beh + zabar + beh + zabar + beh + zabar"> - <test rtl="True"><string><em>ہَبَبَبَ</em></string></test> - <test rtl="True"><string>ل<em>ہَبَبَبَ</em></string></test> - <test rtl="True"><string><em>ہَبَبَبَ</em>ف</string></test> - <test rtl="True"><string>ل<em>ہَبَبَبَ</em>ف</string></test> - </testgroup> - <testgroup label="hehGoal + zabar + teh + zabar + teh + zabar + teh + zabar"> - <test rtl="True"><string><em>ہَتَتَتَ</em></string></test> - <test rtl="True"><string>ل<em>ہَتَتَتَ</em></string></test> - <test rtl="True"><string><em>ہَتَتَتَ</em>ف</string></test> - <test rtl="True"><string>ل<em>ہَتَتَتَ</em>ف</string></test> - </testgroup> - <testgroup label="feh + zabar + beh + zabar + beh + zabar"> - <test rtl="True"><string><em>فَبَبَ</em></string></test> - <test rtl="True"><string>ل<em>فَبَبَ</em></string></test> - <test rtl="True"><string><em>فَبَبَ</em>ف</string></test> - <test rtl="True"><string>ل<em>فَبَبَ</em>ف</string></test> - </testgroup> - <testgroup label="feh + zabar + teh + zabar + teh + zabar"> - <test rtl="True"><string><em>فَتَتَ</em></string></test> - <test rtl="True"><string>ل<em>فَتَتَ</em></string></test> - <test rtl="True"><string><em>فَتَتَ</em>ف</string></test> - <test rtl="True"><string>ل<em>فَتَتَ</em>ف</string></test> - </testgroup> - <testgroup label="feh + zabar + beh + zabar + beh + zabar + beh + zabar"> - <test rtl="True"><string><em>فَبَبَبَ</em></string></test> - <test rtl="True"><string>ل<em>فَبَبَبَ</em></string></test> - <test rtl="True"><string><em>فَبَبَبَ</em>ف</string></test> - <test rtl="True"><string>ل<em>فَبَبَبَ</em>ف</string></test> - </testgroup> - <testgroup label="feh + zabar + teh + zabar + teh + zabar + teh + zabar"> - <test rtl="True"><string><em>فَتَتَتَ</em></string></test> - <test rtl="True"><string>ل<em>فَتَتَتَ</em></string></test> - <test rtl="True"><string><em>فَتَتَتَ</em>ف</string></test> - <test rtl="True"><string>ل<em>فَتَتَتَ</em>ف</string></test> - </testgroup> - <testgroup label="sad + zabar + beh + zabar + beh + zabar"> - <test rtl="True"><string><em>صَبَبَ</em></string></test> - <test rtl="True"><string>ل<em>صَبَبَ</em></string></test> - <test rtl="True"><string><em>صَبَبَ</em>ف</string></test> - <test rtl="True"><string>ل<em>صَبَبَ</em>ف</string></test> - </testgroup> - <testgroup label="sad + zabar + teh + zabar + teh + zabar"> - <test rtl="True"><string><em>صَتَتَ</em></string></test> - <test rtl="True"><string>ل<em>صَتَتَ</em></string></test> - <test rtl="True"><string><em>صَتَتَ</em>ف</string></test> - <test rtl="True"><string>ل<em>صَتَتَ</em>ف</string></test> - </testgroup> - <testgroup label="sad + zabar + beh + zabar + beh + zabar + beh + zabar"> - <test rtl="True"><string><em>صَبَبَبَ</em></string></test> - <test rtl="True"><string>ل<em>صَبَبَبَ</em></string></test> - <test rtl="True"><string><em>صَبَبَبَ</em>ف</string></test> - <test rtl="True"><string>ل<em>صَبَبَبَ</em>ف</string></test> - </testgroup> - <testgroup label="sad + zabar + teh + zabar + teh + zabar + teh + zabar"> - <test rtl="True"><string><em>صَتَتَتَ</em></string></test> - <test rtl="True"><string>ل<em>صَتَتَتَ</em></string></test> - <test rtl="True"><string><em>صَتَتَتَ</em>ف</string></test> - <test rtl="True"><string>ل<em>صَتَتَتَ</em>ف</string></test> - </testgroup> - <testgroup label="meem + zabar + beh + zabar + beh + zabar"> - <test rtl="True"><string><em>مَبَبَ</em></string></test> - <test rtl="True"><string>ل<em>مَبَبَ</em></string></test> - <test rtl="True"><string><em>مَبَبَ</em>ف</string></test> - <test rtl="True"><string>ل<em>مَبَبَ</em>ف</string></test> - </testgroup> - <testgroup label="meem + zabar + teh + zabar + teh + zabar"> - <test rtl="True"><string><em>مَتَتَ</em></string></test> - <test rtl="True"><string>ل<em>مَتَتَ</em></string></test> - <test rtl="True"><string><em>مَتَتَ</em>ف</string></test> - <test rtl="True"><string>ل<em>مَتَتَ</em>ف</string></test> - </testgroup> - <testgroup label="meem + zabar + beh + zabar + beh + zabar + beh + zabar"> - <test rtl="True"><string><em>مَبَبَبَ</em></string></test> - <test rtl="True"><string>ل<em>مَبَبَبَ</em></string></test> - <test rtl="True"><string><em>مَبَبَبَ</em>ف</string></test> - <test rtl="True"><string>ل<em>مَبَبَبَ</em>ف</string></test> - </testgroup> - <testgroup label="meem + zabar + teh + zabar + teh + zabar + teh + zabar"> - <test rtl="True"><string><em>مَتَتَتَ</em></string></test> - <test rtl="True"><string>ل<em>مَتَتَتَ</em></string></test> - <test rtl="True"><string><em>مَتَتَتَ</em>ف</string></test> - <test rtl="True"><string>ل<em>مَتَتَتَ</em>ف</string></test> - </testgroup> - <testgroup label="ain + zabar + beh + zabar + beh + zabar"> - <test rtl="True"><string><em>عَبَبَ</em></string></test> - <test rtl="True"><string>ل<em>عَبَبَ</em></string></test> - <test rtl="True"><string><em>عَبَبَ</em>ف</string></test> - <test rtl="True"><string>ل<em>عَبَبَ</em>ف</string></test> - </testgroup> - <testgroup label="ain + zabar + teh + zabar + teh + zabar"> - <test rtl="True"><string><em>عَتَتَ</em></string></test> - <test rtl="True"><string>ل<em>عَتَتَ</em></string></test> - <test rtl="True"><string><em>عَتَتَ</em>ف</string></test> - <test rtl="True"><string>ل<em>عَتَتَ</em>ف</string></test> - </testgroup> - <testgroup label="ain + zabar + beh + zabar + beh + zabar + beh + zabar"> - <test rtl="True"><string><em>عَبَبَبَ</em></string></test> - <test rtl="True"><string>ل<em>عَبَبَبَ</em></string></test> - <test rtl="True"><string><em>عَبَبَبَ</em>ف</string></test> - <test rtl="True"><string>ل<em>عَبَبَبَ</em>ف</string></test> - </testgroup> - <testgroup label="ain + zabar + teh + zabar + teh + zabar + teh + zabar"> - <test rtl="True"><string><em>عَتَتَتَ</em></string></test> - <test rtl="True"><string>ل<em>عَتَتَتَ</em></string></test> - <test rtl="True"><string><em>عَتَتَتَ</em>ف</string></test> - <test rtl="True"><string>ل<em>عَتَتَتَ</em>ف</string></test> - </testgroup> - <testgroup label="jeem + zabar + beh + zabar + beh + zabar"> - <test rtl="True"><string><em>جَبَبَ</em></string></test> - <test rtl="True"><string>ل<em>جَبَبَ</em></string></test> - <test rtl="True"><string><em>جَبَبَ</em>ف</string></test> - <test rtl="True"><string>ل<em>جَبَبَ</em>ف</string></test> - </testgroup> - <testgroup label="jeem + zabar + teh + zabar + teh + zabar"> - <test rtl="True"><string><em>جَتَتَ</em></string></test> - <test rtl="True"><string>ل<em>جَتَتَ</em></string></test> - <test rtl="True"><string><em>جَتَتَ</em>ف</string></test> - <test rtl="True"><string>ل<em>جَتَتَ</em>ف</string></test> - </testgroup> - <testgroup label="jeem + zabar + beh + zabar + beh + zabar + beh + zabar"> - <test rtl="True"><string><em>جَبَبَبَ</em></string></test> - <test rtl="True"><string>ل<em>جَبَبَبَ</em></string></test> - <test rtl="True"><string><em>جَبَبَبَ</em>ف</string></test> - <test rtl="True"><string>ل<em>جَبَبَبَ</em>ف</string></test> - </testgroup> - <testgroup label="jeem + zabar + teh + zabar + teh + zabar + teh + zabar"> - <test rtl="True"><string><em>جَتَتَتَ</em></string></test> - <test rtl="True"><string>ل<em>جَتَتَتَ</em></string></test> - <test rtl="True"><string><em>جَتَتَتَ</em>ف</string></test> - <test rtl="True"><string>ل<em>جَتَتَتَ</em>ف</string></test> - </testgroup> - <testgroup label="gaf + zabar + beh + zabar + beh + zabar"> - <test rtl="True"><string><em>گَبَبَ</em></string></test> - <test rtl="True"><string>ل<em>گَبَبَ</em></string></test> - <test rtl="True"><string><em>گَبَبَ</em>ف</string></test> - <test rtl="True"><string>ل<em>گَبَبَ</em>ف</string></test> - </testgroup> - <testgroup label="gaf + zabar + teh + zabar + teh + zabar"> - <test rtl="True"><string><em>گَتَتَ</em></string></test> - <test rtl="True"><string>ل<em>گَتَتَ</em></string></test> - <test rtl="True"><string><em>گَتَتَ</em>ف</string></test> - <test rtl="True"><string>ل<em>گَتَتَ</em>ف</string></test> - </testgroup> - <testgroup label="gaf + zabar + beh + zabar + beh + zabar + beh + zabar"> - <test rtl="True"><string><em>گَبَبَبَ</em></string></test> - <test rtl="True"><string>ل<em>گَبَبَبَ</em></string></test> - <test rtl="True"><string><em>گَبَبَبَ</em>ف</string></test> - <test rtl="True"><string>ل<em>گَبَبَبَ</em>ف</string></test> - </testgroup> - <testgroup label="gaf + zabar + teh + zabar + teh + zabar + teh + zabar"> - <test rtl="True"><string><em>گَتَتَتَ</em></string></test> - <test rtl="True"><string>ل<em>گَتَتَتَ</em></string></test> - <test rtl="True"><string><em>گَتَتَتَ</em>ف</string></test> - <test rtl="True"><string>ل<em>گَتَتَتَ</em>ف</string></test> - </testgroup> - <testgroup label="seen + zabar + beh + zabar + beh + zabar"> - <test rtl="True"><string><em>سَبَبَ</em></string></test> - <test rtl="True"><string>ل<em>سَبَبَ</em></string></test> - <test rtl="True"><string><em>سَبَبَ</em>ف</string></test> - <test rtl="True"><string>ل<em>سَبَبَ</em>ف</string></test> - </testgroup> - <testgroup label="seen + zabar + teh + zabar + teh + zabar"> - <test rtl="True"><string><em>سَتَتَ</em></string></test> - <test rtl="True"><string>ل<em>سَتَتَ</em></string></test> - <test rtl="True"><string><em>سَتَتَ</em>ف</string></test> - <test rtl="True"><string>ل<em>سَتَتَ</em>ف</string></test> - </testgroup> - <testgroup label="seen + zabar + beh + zabar + beh + zabar + beh + zabar"> - <test rtl="True"><string><em>سَبَبَبَ</em></string></test> - <test rtl="True"><string>ل<em>سَبَبَبَ</em></string></test> - <test rtl="True"><string><em>سَبَبَبَ</em>ف</string></test> - <test rtl="True"><string>ل<em>سَبَبَبَ</em>ف</string></test> - </testgroup> - <testgroup label="seen + zabar + teh + zabar + teh + zabar + teh + zabar"> - <test rtl="True"><string><em>سَتَتَتَ</em></string></test> - <test rtl="True"><string>ل<em>سَتَتَتَ</em></string></test> - <test rtl="True"><string><em>سَتَتَتَ</em>ف</string></test> - <test rtl="True"><string>ل<em>سَتَتَتَ</em>ف</string></test> - </testgroup> - <testgroup label="tah + zabar + beh + zabar + beh + zabar"> - <test rtl="True"><string><em>طَبَبَ</em></string></test> - <test rtl="True"><string>ل<em>طَبَبَ</em></string></test> - <test rtl="True"><string><em>طَبَبَ</em>ف</string></test> - <test rtl="True"><string>ل<em>طَبَبَ</em>ف</string></test> - </testgroup> - <testgroup label="tah + zabar + teh + zabar + teh + zabar"> - <test rtl="True"><string><em>طَتَتَ</em></string></test> - <test rtl="True"><string>ل<em>طَتَتَ</em></string></test> - <test rtl="True"><string><em>طَتَتَ</em>ف</string></test> - <test rtl="True"><string>ل<em>طَتَتَ</em>ف</string></test> - </testgroup> - <testgroup label="tah + zabar + beh + zabar + beh + zabar + beh + zabar"> - <test rtl="True"><string><em>طَبَبَبَ</em></string></test> - <test rtl="True"><string>ل<em>طَبَبَبَ</em></string></test> - <test rtl="True"><string><em>طَبَبَبَ</em>ف</string></test> - <test rtl="True"><string>ل<em>طَبَبَبَ</em>ف</string></test> - </testgroup> - <testgroup label="tah + zabar + teh + zabar + teh + zabar + teh + zabar"> - <test rtl="True"><string><em>طَتَتَتَ</em></string></test> - <test rtl="True"><string>ل<em>طَتَتَتَ</em></string></test> - <test rtl="True"><string><em>طَتَتَتَ</em>ف</string></test> - <test rtl="True"><string>ل<em>طَتَتَتَ</em>ف</string></test> - </testgroup> - </testgroup> - <testgroup label="Multiple Beh sequences with Zair"> - <testgroup label="teh + zair + beh + zair + beh + zair"> - <test rtl="True"><string><em>تِبِبِ</em></string></test> - <test rtl="True"><string>ل<em>تِبِبِ</em></string></test> - <test rtl="True"><string><em>تِبِبِ</em>ف</string></test> - <test rtl="True"><string>ل<em>تِبِبِ</em>ف</string></test> - </testgroup> - <testgroup label="teh + zair + teh + zair + teh + zair"> - <test rtl="True"><string><em>تِتِتِ</em></string></test> - <test rtl="True"><string>ل<em>تِتِتِ</em></string></test> - <test rtl="True"><string><em>تِتِتِ</em>ف</string></test> - <test rtl="True"><string>ل<em>تِتِتِ</em>ف</string></test> - </testgroup> - <testgroup label="teh + zair + beh + zair + beh + zair + beh + zair"> - <test rtl="True"><string><em>تِبِبِبِ</em></string></test> - <test rtl="True"><string>ل<em>تِبِبِبِ</em></string></test> - <test rtl="True"><string><em>تِبِبِبِ</em>ف</string></test> - <test rtl="True"><string>ل<em>تِبِبِبِ</em>ف</string></test> - </testgroup> - <testgroup label="teh + zair + teh + zair + teh + zair + teh + zair"> - <test rtl="True"><string><em>تِتِتِتِ</em></string></test> - <test rtl="True"><string>ل<em>تِتِتِتِ</em></string></test> - <test rtl="True"><string><em>تِتِتِتِ</em>ف</string></test> - <test rtl="True"><string>ل<em>تِتِتِتِ</em>ف</string></test> - </testgroup> - <testgroup label="lam + zair + beh + zair + beh + zair"> - <test rtl="True"><string><em>لِبِبِ</em></string></test> - <test rtl="True"><string>ل<em>لِبِبِ</em></string></test> - <test rtl="True"><string><em>لِبِبِ</em>ف</string></test> - <test rtl="True"><string>ل<em>لِبِبِ</em>ف</string></test> - </testgroup> - <testgroup label="lam + zair + teh + zair + teh + zair"> - <test rtl="True"><string><em>لِتِتِ</em></string></test> - <test rtl="True"><string>ل<em>لِتِتِ</em></string></test> - <test rtl="True"><string><em>لِتِتِ</em>ف</string></test> - <test rtl="True"><string>ل<em>لِتِتِ</em>ف</string></test> - </testgroup> - <testgroup label="lam + zair + beh + zair + beh + zair + beh + zair"> - <test rtl="True"><string><em>لِبِبِبِ</em></string></test> - <test rtl="True"><string>ل<em>لِبِبِبِ</em></string></test> - <test rtl="True"><string><em>لِبِبِبِ</em>ف</string></test> - <test rtl="True"><string>ل<em>لِبِبِبِ</em>ف</string></test> - </testgroup> - <testgroup label="lam + zair + teh + zair + teh + zair + teh + zair"> - <test rtl="True"><string><em>لِتِتِتِ</em></string></test> - <test rtl="True"><string>ل<em>لِتِتِتِ</em></string></test> - <test rtl="True"><string><em>لِتِتِتِ</em>ف</string></test> - <test rtl="True"><string>ل<em>لِتِتِتِ</em>ف</string></test> - </testgroup> - <testgroup label="beh + zair + beh + zair + beh + zair"> - <test rtl="True"><string><em>بِبِبِ</em></string></test> - <test rtl="True"><string>ل<em>بِبِبِ</em></string></test> - <test rtl="True"><string><em>بِبِبِ</em>ف</string></test> - <test rtl="True"><string>ل<em>بِبِبِ</em>ف</string></test> - </testgroup> - <testgroup label="beh + zair + teh + zair + teh + zair"> - <test rtl="True"><string><em>بِتِتِ</em></string></test> - <test rtl="True"><string>ل<em>بِتِتِ</em></string></test> - <test rtl="True"><string><em>بِتِتِ</em>ف</string></test> - <test rtl="True"><string>ل<em>بِتِتِ</em>ف</string></test> - </testgroup> - <testgroup label="beh + zair + beh + zair + beh + zair + beh + zair"> - <test rtl="True"><string><em>بِبِبِبِ</em></string></test> - <test rtl="True"><string>ل<em>بِبِبِبِ</em></string></test> - <test rtl="True"><string><em>بِبِبِبِ</em>ف</string></test> - <test rtl="True"><string>ل<em>بِبِبِبِ</em>ف</string></test> - </testgroup> - <testgroup label="beh + zair + teh + zair + teh + zair + teh + zair"> - <test rtl="True"><string><em>بِتِتِتِ</em></string></test> - <test rtl="True"><string>ل<em>بِتِتِتِ</em></string></test> - <test rtl="True"><string><em>بِتِتِتِ</em>ف</string></test> - <test rtl="True"><string>ل<em>بِتِتِتِ</em>ف</string></test> - </testgroup> - <testgroup label="kaf + zair + beh + zair + beh + zair"> - <test rtl="True"><string><em>کِبِبِ</em></string></test> - <test rtl="True"><string>ل<em>کِبِبِ</em></string></test> - <test rtl="True"><string><em>کِبِبِ</em>ف</string></test> - <test rtl="True"><string>ل<em>کِبِبِ</em>ف</string></test> - </testgroup> - <testgroup label="kaf + zair + teh + zair + teh + zair"> - <test rtl="True"><string><em>کِتِتِ</em></string></test> - <test rtl="True"><string>ل<em>کِتِتِ</em></string></test> - <test rtl="True"><string><em>کِتِتِ</em>ف</string></test> - <test rtl="True"><string>ل<em>کِتِتِ</em>ف</string></test> - </testgroup> - <testgroup label="kaf + zair + beh + zair + beh + zair + beh + zair"> - <test rtl="True"><string><em>کِبِبِبِ</em></string></test> - <test rtl="True"><string>ل<em>کِبِبِبِ</em></string></test> - <test rtl="True"><string><em>کِبِبِبِ</em>ف</string></test> - <test rtl="True"><string>ل<em>کِبِبِبِ</em>ف</string></test> - </testgroup> - <testgroup label="kaf + zair + teh + zair + teh + zair + teh + zair"> - <test rtl="True"><string><em>کِتِتِتِ</em></string></test> - <test rtl="True"><string>ل<em>کِتِتِتِ</em></string></test> - <test rtl="True"><string><em>کِتِتِتِ</em>ف</string></test> - <test rtl="True"><string>ل<em>کِتِتِتِ</em>ف</string></test> - </testgroup> - <testgroup label="hehDo + zair + beh + zair + beh + zair"> - <test rtl="True"><string><em>ھِبِبِ</em></string></test> - <test rtl="True"><string>ل<em>ھِبِبِ</em></string></test> - <test rtl="True"><string><em>ھِبِبِ</em>ف</string></test> - <test rtl="True"><string>ل<em>ھِبِبِ</em>ف</string></test> - </testgroup> - <testgroup label="hehDo + zair + teh + zair + teh + zair"> - <test rtl="True"><string><em>ھِتِتِ</em></string></test> - <test rtl="True"><string>ل<em>ھِتِتِ</em></string></test> - <test rtl="True"><string><em>ھِتِتِ</em>ف</string></test> - <test rtl="True"><string>ل<em>ھِتِتِ</em>ف</string></test> - </testgroup> - <testgroup label="hehDo + zair + beh + zair + beh + zair + beh + zair"> - <test rtl="True"><string><em>ھِبِبِبِ</em></string></test> - <test rtl="True"><string>ل<em>ھِبِبِبِ</em></string></test> - <test rtl="True"><string><em>ھِبِبِبِ</em>ف</string></test> - <test rtl="True"><string>ل<em>ھِبِبِبِ</em>ف</string></test> - </testgroup> - <testgroup label="hehDo + zair + teh + zair + teh + zair + teh + zair"> - <test rtl="True"><string><em>ھِتِتِتِ</em></string></test> - <test rtl="True"><string>ل<em>ھِتِتِتِ</em></string></test> - <test rtl="True"><string><em>ھِتِتِتِ</em>ف</string></test> - <test rtl="True"><string>ل<em>ھِتِتِتِ</em>ف</string></test> - </testgroup> - <testgroup label="hehGoal + zair + beh + zair + beh + zair"> - <test rtl="True"><string><em>ہِبِبِ</em></string></test> - <test rtl="True"><string>ل<em>ہِبِبِ</em></string></test> - <test rtl="True"><string><em>ہِبِبِ</em>ف</string></test> - <test rtl="True"><string>ل<em>ہِبِبِ</em>ف</string></test> - </testgroup> - <testgroup label="hehGoal + zair + teh + zair + teh + zair"> - <test rtl="True"><string><em>ہِتِتِ</em></string></test> - <test rtl="True"><string>ل<em>ہِتِتِ</em></string></test> - <test rtl="True"><string><em>ہِتِتِ</em>ف</string></test> - <test rtl="True"><string>ل<em>ہِتِتِ</em>ف</string></test> - </testgroup> - <testgroup label="hehGoal + zair + beh + zair + beh + zair + beh + zair"> - <test rtl="True"><string><em>ہِبِبِبِ</em></string></test> - <test rtl="True"><string>ل<em>ہِبِبِبِ</em></string></test> - <test rtl="True"><string><em>ہِبِبِبِ</em>ف</string></test> - <test rtl="True"><string>ل<em>ہِبِبِبِ</em>ف</string></test> - </testgroup> - <testgroup label="hehGoal + zair + teh + zair + teh + zair + teh + zair"> - <test rtl="True"><string><em>ہِتِتِتِ</em></string></test> - <test rtl="True"><string>ل<em>ہِتِتِتِ</em></string></test> - <test rtl="True"><string><em>ہِتِتِتِ</em>ف</string></test> - <test rtl="True"><string>ل<em>ہِتِتِتِ</em>ف</string></test> - </testgroup> - <testgroup label="feh + zair + beh + zair + beh + zair"> - <test rtl="True"><string><em>فِبِبِ</em></string></test> - <test rtl="True"><string>ل<em>فِبِبِ</em></string></test> - <test rtl="True"><string><em>فِبِبِ</em>ف</string></test> - <test rtl="True"><string>ل<em>فِبِبِ</em>ف</string></test> - </testgroup> - <testgroup label="feh + zair + teh + zair + teh + zair"> - <test rtl="True"><string><em>فِتِتِ</em></string></test> - <test rtl="True"><string>ل<em>فِتِتِ</em></string></test> - <test rtl="True"><string><em>فِتِتِ</em>ف</string></test> - <test rtl="True"><string>ل<em>فِتِتِ</em>ف</string></test> - </testgroup> - <testgroup label="feh + zair + beh + zair + beh + zair + beh + zair"> - <test rtl="True"><string><em>فِبِبِبِ</em></string></test> - <test rtl="True"><string>ل<em>فِبِبِبِ</em></string></test> - <test rtl="True"><string><em>فِبِبِبِ</em>ف</string></test> - <test rtl="True"><string>ل<em>فِبِبِبِ</em>ف</string></test> - </testgroup> - <testgroup label="feh + zair + teh + zair + teh + zair + teh + zair"> - <test rtl="True"><string><em>فِتِتِتِ</em></string></test> - <test rtl="True"><string>ل<em>فِتِتِتِ</em></string></test> - <test rtl="True"><string><em>فِتِتِتِ</em>ف</string></test> - <test rtl="True"><string>ل<em>فِتِتِتِ</em>ف</string></test> - </testgroup> - <testgroup label="sad + zair + beh + zair + beh + zair"> - <test rtl="True"><string><em>صِبِبِ</em></string></test> - <test rtl="True"><string>ل<em>صِبِبِ</em></string></test> - <test rtl="True"><string><em>صِبِبِ</em>ف</string></test> - <test rtl="True"><string>ل<em>صِبِبِ</em>ف</string></test> - </testgroup> - <testgroup label="sad + zair + teh + zair + teh + zair"> - <test rtl="True"><string><em>صِتِتِ</em></string></test> - <test rtl="True"><string>ل<em>صِتِتِ</em></string></test> - <test rtl="True"><string><em>صِتِتِ</em>ف</string></test> - <test rtl="True"><string>ل<em>صِتِتِ</em>ف</string></test> - </testgroup> - <testgroup label="sad + zair + beh + zair + beh + zair + beh + zair"> - <test rtl="True"><string><em>صِبِبِبِ</em></string></test> - <test rtl="True"><string>ل<em>صِبِبِبِ</em></string></test> - <test rtl="True"><string><em>صِبِبِبِ</em>ف</string></test> - <test rtl="True"><string>ل<em>صِبِبِبِ</em>ف</string></test> - </testgroup> - <testgroup label="sad + zair + teh + zair + teh + zair + teh + zair"> - <test rtl="True"><string><em>صِتِتِتِ</em></string></test> - <test rtl="True"><string>ل<em>صِتِتِتِ</em></string></test> - <test rtl="True"><string><em>صِتِتِتِ</em>ف</string></test> - <test rtl="True"><string>ل<em>صِتِتِتِ</em>ف</string></test> - </testgroup> - <testgroup label="meem + zair + beh + zair + beh + zair"> - <test rtl="True"><string><em>مِبِبِ</em></string></test> - <test rtl="True"><string>ل<em>مِبِبِ</em></string></test> - <test rtl="True"><string><em>مِبِبِ</em>ف</string></test> - <test rtl="True"><string>ل<em>مِبِبِ</em>ف</string></test> - </testgroup> - <testgroup label="meem + zair + teh + zair + teh + zair"> - <test rtl="True"><string><em>مِتِتِ</em></string></test> - <test rtl="True"><string>ل<em>مِتِتِ</em></string></test> - <test rtl="True"><string><em>مِتِتِ</em>ف</string></test> - <test rtl="True"><string>ل<em>مِتِتِ</em>ف</string></test> - </testgroup> - <testgroup label="meem + zair + beh + zair + beh + zair + beh + zair"> - <test rtl="True"><string><em>مِبِبِبِ</em></string></test> - <test rtl="True"><string>ل<em>مِبِبِبِ</em></string></test> - <test rtl="True"><string><em>مِبِبِبِ</em>ف</string></test> - <test rtl="True"><string>ل<em>مِبِبِبِ</em>ف</string></test> - </testgroup> - <testgroup label="meem + zair + teh + zair + teh + zair + teh + zair"> - <test rtl="True"><string><em>مِتِتِتِ</em></string></test> - <test rtl="True"><string>ل<em>مِتِتِتِ</em></string></test> - <test rtl="True"><string><em>مِتِتِتِ</em>ف</string></test> - <test rtl="True"><string>ل<em>مِتِتِتِ</em>ف</string></test> - </testgroup> - <testgroup label="ain + zair + beh + zair + beh + zair"> - <test rtl="True"><string><em>عِبِبِ</em></string></test> - <test rtl="True"><string>ل<em>عِبِبِ</em></string></test> - <test rtl="True"><string><em>عِبِبِ</em>ف</string></test> - <test rtl="True"><string>ل<em>عِبِبِ</em>ف</string></test> - </testgroup> - <testgroup label="ain + zair + teh + zair + teh + zair"> - <test rtl="True"><string><em>عِتِتِ</em></string></test> - <test rtl="True"><string>ل<em>عِتِتِ</em></string></test> - <test rtl="True"><string><em>عِتِتِ</em>ف</string></test> - <test rtl="True"><string>ل<em>عِتِتِ</em>ف</string></test> - </testgroup> - <testgroup label="ain + zair + beh + zair + beh + zair + beh + zair"> - <test rtl="True"><string><em>عِبِبِبِ</em></string></test> - <test rtl="True"><string>ل<em>عِبِبِبِ</em></string></test> - <test rtl="True"><string><em>عِبِبِبِ</em>ف</string></test> - <test rtl="True"><string>ل<em>عِبِبِبِ</em>ف</string></test> - </testgroup> - <testgroup label="ain + zair + teh + zair + teh + zair + teh + zair"> - <test rtl="True"><string><em>عِتِتِتِ</em></string></test> - <test rtl="True"><string>ل<em>عِتِتِتِ</em></string></test> - <test rtl="True"><string><em>عِتِتِتِ</em>ف</string></test> - <test rtl="True"><string>ل<em>عِتِتِتِ</em>ف</string></test> - </testgroup> - <testgroup label="jeem + zair + beh + zair + beh + zair"> - <test rtl="True"><string><em>جِبِبِ</em></string></test> - <test rtl="True"><string>ل<em>جِبِبِ</em></string></test> - <test rtl="True"><string><em>جِبِبِ</em>ف</string></test> - <test rtl="True"><string>ل<em>جِبِبِ</em>ف</string></test> - </testgroup> - <testgroup label="jeem + zair + teh + zair + teh + zair"> - <test rtl="True"><string><em>جِتِتِ</em></string></test> - <test rtl="True"><string>ل<em>جِتِتِ</em></string></test> - <test rtl="True"><string><em>جِتِتِ</em>ف</string></test> - <test rtl="True"><string>ل<em>جِتِتِ</em>ف</string></test> - </testgroup> - <testgroup label="jeem + zair + beh + zair + beh + zair + beh + zair"> - <test rtl="True"><string><em>جِبِبِبِ</em></string></test> - <test rtl="True"><string>ل<em>جِبِبِبِ</em></string></test> - <test rtl="True"><string><em>جِبِبِبِ</em>ف</string></test> - <test rtl="True"><string>ل<em>جِبِبِبِ</em>ف</string></test> - </testgroup> - <testgroup label="jeem + zair + teh + zair + teh + zair + teh + zair"> - <test rtl="True"><string><em>جِتِتِتِ</em></string></test> - <test rtl="True"><string>ل<em>جِتِتِتِ</em></string></test> - <test rtl="True"><string><em>جِتِتِتِ</em>ف</string></test> - <test rtl="True"><string>ل<em>جِتِتِتِ</em>ف</string></test> - </testgroup> - <testgroup label="gaf + zair + beh + zair + beh + zair"> - <test rtl="True"><string><em>گِبِبِ</em></string></test> - <test rtl="True"><string>ل<em>گِبِبِ</em></string></test> - <test rtl="True"><string><em>گِبِبِ</em>ف</string></test> - <test rtl="True"><string>ل<em>گِبِبِ</em>ف</string></test> - </testgroup> - <testgroup label="gaf + zair + teh + zair + teh + zair"> - <test rtl="True"><string><em>گِتِتِ</em></string></test> - <test rtl="True"><string>ل<em>گِتِتِ</em></string></test> - <test rtl="True"><string><em>گِتِتِ</em>ف</string></test> - <test rtl="True"><string>ل<em>گِتِتِ</em>ف</string></test> - </testgroup> - <testgroup label="gaf + zair + beh + zair + beh + zair + beh + zair"> - <test rtl="True"><string><em>گِبِبِبِ</em></string></test> - <test rtl="True"><string>ل<em>گِبِبِبِ</em></string></test> - <test rtl="True"><string><em>گِبِبِبِ</em>ف</string></test> - <test rtl="True"><string>ل<em>گِبِبِبِ</em>ف</string></test> - </testgroup> - <testgroup label="gaf + zair + teh + zair + teh + zair + teh + zair"> - <test rtl="True"><string><em>گِتِتِتِ</em></string></test> - <test rtl="True"><string>ل<em>گِتِتِتِ</em></string></test> - <test rtl="True"><string><em>گِتِتِتِ</em>ف</string></test> - <test rtl="True"><string>ل<em>گِتِتِتِ</em>ف</string></test> - </testgroup> - <testgroup label="seen + zair + beh + zair + beh + zair"> - <test rtl="True"><string><em>سِبِبِ</em></string></test> - <test rtl="True"><string>ل<em>سِبِبِ</em></string></test> - <test rtl="True"><string><em>سِبِبِ</em>ف</string></test> - <test rtl="True"><string>ل<em>سِبِبِ</em>ف</string></test> - </testgroup> - <testgroup label="seen + zair + teh + zair + teh + zair"> - <test rtl="True"><string><em>سِتِتِ</em></string></test> - <test rtl="True"><string>ل<em>سِتِتِ</em></string></test> - <test rtl="True"><string><em>سِتِتِ</em>ف</string></test> - <test rtl="True"><string>ل<em>سِتِتِ</em>ف</string></test> - </testgroup> - <testgroup label="seen + zair + beh + zair + beh + zair + beh + zair"> - <test rtl="True"><string><em>سِبِبِبِ</em></string></test> - <test rtl="True"><string>ل<em>سِبِبِبِ</em></string></test> - <test rtl="True"><string><em>سِبِبِبِ</em>ف</string></test> - <test rtl="True"><string>ل<em>سِبِبِبِ</em>ف</string></test> - </testgroup> - <testgroup label="seen + zair + teh + zair + teh + zair + teh + zair"> - <test rtl="True"><string><em>سِتِتِتِ</em></string></test> - <test rtl="True"><string>ل<em>سِتِتِتِ</em></string></test> - <test rtl="True"><string><em>سِتِتِتِ</em>ف</string></test> - <test rtl="True"><string>ل<em>سِتِتِتِ</em>ف</string></test> - </testgroup> - <testgroup label="tah + zair + beh + zair + beh + zair"> - <test rtl="True"><string><em>طِبِبِ</em></string></test> - <test rtl="True"><string>ل<em>طِبِبِ</em></string></test> - <test rtl="True"><string><em>طِبِبِ</em>ف</string></test> - <test rtl="True"><string>ل<em>طِبِبِ</em>ف</string></test> - </testgroup> - <testgroup label="tah + zair + teh + zair + teh + zair"> - <test rtl="True"><string><em>طِتِتِ</em></string></test> - <test rtl="True"><string>ل<em>طِتِتِ</em></string></test> - <test rtl="True"><string><em>طِتِتِ</em>ف</string></test> - <test rtl="True"><string>ل<em>طِتِتِ</em>ف</string></test> - </testgroup> - <testgroup label="tah + zair + beh + zair + beh + zair + beh + zair"> - <test rtl="True"><string><em>طِبِبِبِ</em></string></test> - <test rtl="True"><string>ل<em>طِبِبِبِ</em></string></test> - <test rtl="True"><string><em>طِبِبِبِ</em>ف</string></test> - <test rtl="True"><string>ل<em>طِبِبِبِ</em>ف</string></test> - </testgroup> - <testgroup label="tah + zair + teh + zair + teh + zair + teh + zair"> - <test rtl="True"><string><em>طِتِتِتِ</em></string></test> - <test rtl="True"><string>ل<em>طِتِتِتِ</em></string></test> - <test rtl="True"><string><em>طِتِتِتِ</em>ف</string></test> - <test rtl="True"><string>ل<em>طِتِتِتِ</em>ف</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>صَبَصَ</em></string></test> - <test rtl="True"><string>ل<em>صَبَصَ</em></string></test> - <test rtl="True"><string><em>صَبَصَ</em>ف</string></test> - <test rtl="True"><string>ل<em>صَبَصَ</em>ف</string></test> - </testgroup> - <testgroup label="sad + zabar + teh + zabar + sad + zabar"> - <test rtl="True"><string><em>صَتَصَ</em></string></test> - <test rtl="True"><string>ل<em>صَتَصَ</em></string></test> - <test rtl="True"><string><em>صَتَصَ</em>ف</string></test> - <test rtl="True"><string>ل<em>صَتَصَ</em>ف</string></test> - </testgroup> - <testgroup label="sad + zabar + beh + zabar + tah + zabar"> - <test rtl="True"><string><em>صَبَطَ</em></string></test> - <test rtl="True"><string>ل<em>صَبَطَ</em></string></test> - <test rtl="True"><string><em>صَبَطَ</em>ف</string></test> - <test rtl="True"><string>ل<em>صَبَطَ</em>ف</string></test> - </testgroup> - <testgroup label="sad + zabar + teh + zabar + tah + zabar"> - <test rtl="True"><string><em>صَتَطَ</em></string></test> - <test rtl="True"><string>ل<em>صَتَطَ</em></string></test> - <test rtl="True"><string><em>صَتَطَ</em>ف</string></test> - <test rtl="True"><string>ل<em>صَتَطَ</em>ف</string></test> - </testgroup> - <testgroup label="sad + zabar + beh + zabar + ain + zabar"> - <test rtl="True"><string><em>صَبَعَ</em></string></test> - <test rtl="True"><string>ل<em>صَبَعَ</em></string></test> - <test rtl="True"><string><em>صَبَعَ</em>ف</string></test> - <test rtl="True"><string>ل<em>صَبَعَ</em>ف</string></test> - </testgroup> - <testgroup label="sad + zabar + teh + zabar + ain + zabar"> - <test rtl="True"><string><em>صَتَعَ</em></string></test> - <test rtl="True"><string>ل<em>صَتَعَ</em></string></test> - <test rtl="True"><string><em>صَتَعَ</em>ف</string></test> - <test rtl="True"><string>ل<em>صَتَعَ</em>ف</string></test> - </testgroup> - <testgroup label="sad + zabar + beh + zabar + feh + zabar"> - <test rtl="True"><string><em>صَبَفَ</em></string></test> - <test rtl="True"><string>ل<em>صَبَفَ</em></string></test> - <test rtl="True"><string><em>صَبَفَ</em>ف</string></test> - <test rtl="True"><string>ل<em>صَبَفَ</em>ف</string></test> - </testgroup> - <testgroup label="sad + zabar + teh + zabar + feh + zabar"> - <test rtl="True"><string><em>صَتَفَ</em></string></test> - <test rtl="True"><string>ل<em>صَتَفَ</em></string></test> - <test rtl="True"><string><em>صَتَفَ</em>ف</string></test> - <test rtl="True"><string>ل<em>صَتَفَ</em>ف</string></test> - </testgroup> - <testgroup label="sad + zabar + beh + zabar + qaf + zabar"> - <test rtl="True"><string><em>صَبَقَ</em></string></test> - <test rtl="True"><string>ل<em>صَبَقَ</em></string></test> - <test rtl="True"><string><em>صَبَقَ</em>ف</string></test> - <test rtl="True"><string>ل<em>صَبَقَ</em>ف</string></test> - </testgroup> - <testgroup label="sad + zabar + teh + zabar + qaf + zabar"> - <test rtl="True"><string><em>صَتَقَ</em></string></test> - <test rtl="True"><string>ل<em>صَتَقَ</em></string></test> - <test rtl="True"><string><em>صَتَقَ</em>ف</string></test> - <test rtl="True"><string>ل<em>صَتَقَ</em>ف</string></test> - </testgroup> - <testgroup label="sad + zabar + beh + zabar + beh + zabar"> - <test rtl="True"><string><em>صَبَبَ</em></string></test> - <test rtl="True"><string>ل<em>صَبَبَ</em></string></test> - <test rtl="True"><string><em>صَبَبَ</em>ف</string></test> - <test rtl="True"><string>ل<em>صَبَبَ</em>ف</string></test> - </testgroup> - <testgroup label="sad + zabar + teh + zabar + teh + zabar"> - <test rtl="True"><string><em>صَتَتَ</em></string></test> - <test rtl="True"><string>ل<em>صَتَتَ</em></string></test> - <test rtl="True"><string><em>صَتَتَ</em>ف</string></test> - <test rtl="True"><string>ل<em>صَتَتَ</em>ف</string></test> - </testgroup> - <testgroup label="seen + zabar + beh + zabar + sad + zabar"> - <test rtl="True"><string><em>سَبَصَ</em></string></test> - <test rtl="True"><string>ل<em>سَبَصَ</em></string></test> - <test rtl="True"><string><em>سَبَصَ</em>ف</string></test> - <test rtl="True"><string>ل<em>سَبَصَ</em>ف</string></test> - </testgroup> - <testgroup label="seen + zabar + teh + zabar + sad + zabar"> - <test rtl="True"><string><em>سَتَصَ</em></string></test> - <test rtl="True"><string>ل<em>سَتَصَ</em></string></test> - <test rtl="True"><string><em>سَتَصَ</em>ف</string></test> - <test rtl="True"><string>ل<em>سَتَصَ</em>ف</string></test> - </testgroup> - <testgroup label="seen + zabar + beh + zabar + tah + zabar"> - <test rtl="True"><string><em>سَبَطَ</em></string></test> - <test rtl="True"><string>ل<em>سَبَطَ</em></string></test> - <test rtl="True"><string><em>سَبَطَ</em>ف</string></test> - <test rtl="True"><string>ل<em>سَبَطَ</em>ف</string></test> - </testgroup> - <testgroup label="seen + zabar + teh + zabar + tah + zabar"> - <test rtl="True"><string><em>سَتَطَ</em></string></test> - <test rtl="True"><string>ل<em>سَتَطَ</em></string></test> - <test rtl="True"><string><em>سَتَطَ</em>ف</string></test> - <test rtl="True"><string>ل<em>سَتَطَ</em>ف</string></test> - </testgroup> - <testgroup label="seen + zabar + beh + zabar + ain + zabar"> - <test rtl="True"><string><em>سَبَعَ</em></string></test> - <test rtl="True"><string>ل<em>سَبَعَ</em></string></test> - <test rtl="True"><string><em>سَبَعَ</em>ف</string></test> - <test rtl="True"><string>ل<em>سَبَعَ</em>ف</string></test> - </testgroup> - <testgroup label="seen + zabar + teh + zabar + ain + zabar"> - <test rtl="True"><string><em>سَتَعَ</em></string></test> - <test rtl="True"><string>ل<em>سَتَعَ</em></string></test> - <test rtl="True"><string><em>سَتَعَ</em>ف</string></test> - <test rtl="True"><string>ل<em>سَتَعَ</em>ف</string></test> - </testgroup> - <testgroup label="seen + zabar + beh + zabar + feh + zabar"> - <test rtl="True"><string><em>سَبَفَ</em></string></test> - <test rtl="True"><string>ل<em>سَبَفَ</em></string></test> - <test rtl="True"><string><em>سَبَفَ</em>ف</string></test> - <test rtl="True"><string>ل<em>سَبَفَ</em>ف</string></test> - </testgroup> - <testgroup label="seen + zabar + teh + zabar + feh + zabar"> - <test rtl="True"><string><em>سَتَفَ</em></string></test> - <test rtl="True"><string>ل<em>سَتَفَ</em></string></test> - <test rtl="True"><string><em>سَتَفَ</em>ف</string></test> - <test rtl="True"><string>ل<em>سَتَفَ</em>ف</string></test> - </testgroup> - <testgroup label="seen + zabar + beh + zabar + qaf + zabar"> - <test rtl="True"><string><em>سَبَقَ</em></string></test> - <test rtl="True"><string>ل<em>سَبَقَ</em></string></test> - <test rtl="True"><string><em>سَبَقَ</em>ف</string></test> - <test rtl="True"><string>ل<em>سَبَقَ</em>ف</string></test> - </testgroup> - <testgroup label="seen + zabar + teh + zabar + qaf + zabar"> - <test rtl="True"><string><em>سَتَقَ</em></string></test> - <test rtl="True"><string>ل<em>سَتَقَ</em></string></test> - <test rtl="True"><string><em>سَتَقَ</em>ف</string></test> - <test rtl="True"><string>ل<em>سَتَقَ</em>ف</string></test> - </testgroup> - <testgroup label="seen + zabar + beh + zabar + beh + zabar"> - <test rtl="True"><string><em>سَبَبَ</em></string></test> - <test rtl="True"><string>ل<em>سَبَبَ</em></string></test> - <test rtl="True"><string><em>سَبَبَ</em>ف</string></test> - <test rtl="True"><string>ل<em>سَبَبَ</em>ف</string></test> - </testgroup> - <testgroup label="seen + zabar + teh + zabar + teh + zabar"> - <test rtl="True"><string><em>سَتَتَ</em></string></test> - <test rtl="True"><string>ل<em>سَتَتَ</em></string></test> - <test rtl="True"><string><em>سَتَتَ</em>ف</string></test> - <test rtl="True"><string>ل<em>سَتَتَ</em>ف</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>صِبِصِ</em></string></test> - <test rtl="True"><string>ل<em>صِبِصِ</em></string></test> - <test rtl="True"><string><em>صِبِصِ</em>ف</string></test> - <test rtl="True"><string>ل<em>صِبِصِ</em>ف</string></test> - </testgroup> - <testgroup label="sad + zair + teh + zair + sad + zair"> - <test rtl="True"><string><em>صِتِصِ</em></string></test> - <test rtl="True"><string>ل<em>صِتِصِ</em></string></test> - <test rtl="True"><string><em>صِتِصِ</em>ف</string></test> - <test rtl="True"><string>ل<em>صِتِصِ</em>ف</string></test> - </testgroup> - <testgroup label="sad + zair + beh + zair + tah + zair"> - <test rtl="True"><string><em>صِبِطِ</em></string></test> - <test rtl="True"><string>ل<em>صِبِطِ</em></string></test> - <test rtl="True"><string><em>صِبِطِ</em>ف</string></test> - <test rtl="True"><string>ل<em>صِبِطِ</em>ف</string></test> - </testgroup> - <testgroup label="sad + zair + teh + zair + tah + zair"> - <test rtl="True"><string><em>صِتِطِ</em></string></test> - <test rtl="True"><string>ل<em>صِتِطِ</em></string></test> - <test rtl="True"><string><em>صِتِطِ</em>ف</string></test> - <test rtl="True"><string>ل<em>صِتِطِ</em>ف</string></test> - </testgroup> - <testgroup label="sad + zair + beh + zair + ain + zair"> - <test rtl="True"><string><em>صِبِعِ</em></string></test> - <test rtl="True"><string>ل<em>صِبِعِ</em></string></test> - <test rtl="True"><string><em>صِبِعِ</em>ف</string></test> - <test rtl="True"><string>ل<em>صِبِعِ</em>ف</string></test> - </testgroup> - <testgroup label="sad + zair + teh + zair + ain + zair"> - <test rtl="True"><string><em>صِتِعِ</em></string></test> - <test rtl="True"><string>ل<em>صِتِعِ</em></string></test> - <test rtl="True"><string><em>صِتِعِ</em>ف</string></test> - <test rtl="True"><string>ل<em>صِتِعِ</em>ف</string></test> - </testgroup> - <testgroup label="sad + zair + beh + zair + feh + zair"> - <test rtl="True"><string><em>صِبِفِ</em></string></test> - <test rtl="True"><string>ل<em>صِبِفِ</em></string></test> - <test rtl="True"><string><em>صِبِفِ</em>ف</string></test> - <test rtl="True"><string>ل<em>صِبِفِ</em>ف</string></test> - </testgroup> - <testgroup label="sad + zair + teh + zair + feh + zair"> - <test rtl="True"><string><em>صِتِفِ</em></string></test> - <test rtl="True"><string>ل<em>صِتِفِ</em></string></test> - <test rtl="True"><string><em>صِتِفِ</em>ف</string></test> - <test rtl="True"><string>ل<em>صِتِفِ</em>ف</string></test> - </testgroup> - <testgroup label="sad + zair + beh + zair + qaf + zair"> - <test rtl="True"><string><em>صِبِقِ</em></string></test> - <test rtl="True"><string>ل<em>صِبِقِ</em></string></test> - <test rtl="True"><string><em>صِبِقِ</em>ف</string></test> - <test rtl="True"><string>ل<em>صِبِقِ</em>ف</string></test> - </testgroup> - <testgroup label="sad + zair + teh + zair + qaf + zair"> - <test rtl="True"><string><em>صِتِقِ</em></string></test> - <test rtl="True"><string>ل<em>صِتِقِ</em></string></test> - <test rtl="True"><string><em>صِتِقِ</em>ف</string></test> - <test rtl="True"><string>ل<em>صِتِقِ</em>ف</string></test> - </testgroup> - <testgroup label="sad + zair + beh + zair + beh + zair"> - <test rtl="True"><string><em>صِبِبِ</em></string></test> - <test rtl="True"><string>ل<em>صِبِبِ</em></string></test> - <test rtl="True"><string><em>صِبِبِ</em>ف</string></test> - <test rtl="True"><string>ل<em>صِبِبِ</em>ف</string></test> - </testgroup> - <testgroup label="sad + zair + teh + zair + teh + zair"> - <test rtl="True"><string><em>صِتِتِ</em></string></test> - <test rtl="True"><string>ل<em>صِتِتِ</em></string></test> - <test rtl="True"><string><em>صِتِتِ</em>ف</string></test> - <test rtl="True"><string>ل<em>صِتِتِ</em>ف</string></test> - </testgroup> - <testgroup label="seen + zair + beh + zair + sad + zair"> - <test rtl="True"><string><em>سِبِصِ</em></string></test> - <test rtl="True"><string>ل<em>سِبِصِ</em></string></test> - <test rtl="True"><string><em>سِبِصِ</em>ف</string></test> - <test rtl="True"><string>ل<em>سِبِصِ</em>ف</string></test> - </testgroup> - <testgroup label="seen + zair + teh + zair + sad + zair"> - <test rtl="True"><string><em>سِتِصِ</em></string></test> - <test rtl="True"><string>ل<em>سِتِصِ</em></string></test> - <test rtl="True"><string><em>سِتِصِ</em>ف</string></test> - <test rtl="True"><string>ل<em>سِتِصِ</em>ف</string></test> - </testgroup> - <testgroup label="seen + zair + beh + zair + tah + zair"> - <test rtl="True"><string><em>سِبِطِ</em></string></test> - <test rtl="True"><string>ل<em>سِبِطِ</em></string></test> - <test rtl="True"><string><em>سِبِطِ</em>ف</string></test> - <test rtl="True"><string>ل<em>سِبِطِ</em>ف</string></test> - </testgroup> - <testgroup label="seen + zair + teh + zair + tah + zair"> - <test rtl="True"><string><em>سِتِطِ</em></string></test> - <test rtl="True"><string>ل<em>سِتِطِ</em></string></test> - <test rtl="True"><string><em>سِتِطِ</em>ف</string></test> - <test rtl="True"><string>ل<em>سِتِطِ</em>ف</string></test> - </testgroup> - <testgroup label="seen + zair + beh + zair + ain + zair"> - <test rtl="True"><string><em>سِبِعِ</em></string></test> - <test rtl="True"><string>ل<em>سِبِعِ</em></string></test> - <test rtl="True"><string><em>سِبِعِ</em>ف</string></test> - <test rtl="True"><string>ل<em>سِبِعِ</em>ف</string></test> - </testgroup> - <testgroup label="seen + zair + teh + zair + ain + zair"> - <test rtl="True"><string><em>سِتِعِ</em></string></test> - <test rtl="True"><string>ل<em>سِتِعِ</em></string></test> - <test rtl="True"><string><em>سِتِعِ</em>ف</string></test> - <test rtl="True"><string>ل<em>سِتِعِ</em>ف</string></test> - </testgroup> - <testgroup label="seen + zair + beh + zair + feh + zair"> - <test rtl="True"><string><em>سِبِفِ</em></string></test> - <test rtl="True"><string>ل<em>سِبِفِ</em></string></test> - <test rtl="True"><string><em>سِبِفِ</em>ف</string></test> - <test rtl="True"><string>ل<em>سِبِفِ</em>ف</string></test> - </testgroup> - <testgroup label="seen + zair + teh + zair + feh + zair"> - <test rtl="True"><string><em>سِتِفِ</em></string></test> - <test rtl="True"><string>ل<em>سِتِفِ</em></string></test> - <test rtl="True"><string><em>سِتِفِ</em>ف</string></test> - <test rtl="True"><string>ل<em>سِتِفِ</em>ف</string></test> - </testgroup> - <testgroup label="seen + zair + beh + zair + qaf + zair"> - <test rtl="True"><string><em>سِبِقِ</em></string></test> - <test rtl="True"><string>ل<em>سِبِقِ</em></string></test> - <test rtl="True"><string><em>سِبِقِ</em>ف</string></test> - <test rtl="True"><string>ل<em>سِبِقِ</em>ف</string></test> - </testgroup> - <testgroup label="seen + zair + teh + zair + qaf + zair"> - <test rtl="True"><string><em>سِتِقِ</em></string></test> - <test rtl="True"><string>ل<em>سِتِقِ</em></string></test> - <test rtl="True"><string><em>سِتِقِ</em>ف</string></test> - <test rtl="True"><string>ل<em>سِتِقِ</em>ف</string></test> - </testgroup> - <testgroup label="seen + zair + beh + zair + beh + zair"> - <test rtl="True"><string><em>سِبِبِ</em></string></test> - <test rtl="True"><string>ل<em>سِبِبِ</em></string></test> - <test rtl="True"><string><em>سِبِبِ</em>ف</string></test> - <test rtl="True"><string>ل<em>سِبِبِ</em>ف</string></test> - </testgroup> - <testgroup label="seen + zair + teh + zair + teh + zair"> - <test rtl="True"><string><em>سِتِتِ</em></string></test> - <test rtl="True"><string>ل<em>سِتِتِ</em></string></test> - <test rtl="True"><string><em>سِتِتِ</em>ف</string></test> - <test rtl="True"><string>ل<em>سِتِتِ</em>ف</string></test> - </testgroup> - </testgroup> - <testgroup label="Beh + Reh sequences with Zabar"> - <testgroup label="teh + zabar + beh + zabar + reh + zabar"> - <test rtl="True"><string><em>تَبَرَ</em></string></test> - <test rtl="True"><string>ل<em>تَبَرَ</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>تَتَرَ</em></string></test> - <test rtl="True"><string>ل<em>تَتَرَ</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>لَبَرَ</em></string></test> - <test rtl="True"><string>ل<em>لَبَرَ</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>لَتَرَ</em></string></test> - <test rtl="True"><string>ل<em>لَتَرَ</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>بَبَرَ</em></string></test> - <test rtl="True"><string>ل<em>بَبَرَ</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>بَتَرَ</em></string></test> - <test rtl="True"><string>ل<em>بَتَرَ</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>کَبَرَ</em></string></test> - <test rtl="True"><string>ل<em>کَبَرَ</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>کَتَرَ</em></string></test> - <test rtl="True"><string>ل<em>کَتَرَ</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>ھَبَرَ</em></string></test> - <test rtl="True"><string>ل<em>ھَبَرَ</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>ھَتَرَ</em></string></test> - <test rtl="True"><string>ل<em>ھَتَرَ</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>ہَبَرَ</em></string></test> - <test rtl="True"><string>ل<em>ہَبَرَ</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>ہَتَرَ</em></string></test> - <test rtl="True"><string>ل<em>ہَتَرَ</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>فَبَرَ</em></string></test> - <test rtl="True"><string>ل<em>فَبَرَ</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>فَتَرَ</em></string></test> - <test rtl="True"><string>ل<em>فَتَرَ</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>صَبَرَ</em></string></test> - <test rtl="True"><string>ل<em>صَبَرَ</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>صَتَرَ</em></string></test> - <test rtl="True"><string>ل<em>صَتَرَ</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>مَبَرَ</em></string></test> - <test rtl="True"><string>ل<em>مَبَرَ</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>مَتَرَ</em></string></test> - <test rtl="True"><string>ل<em>مَتَرَ</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>عَبَرَ</em></string></test> - <test rtl="True"><string>ل<em>عَبَرَ</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>عَتَرَ</em></string></test> - <test rtl="True"><string>ل<em>عَتَرَ</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>جَبَرَ</em></string></test> - <test rtl="True"><string>ل<em>جَبَرَ</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>جَتَرَ</em></string></test> - <test rtl="True"><string>ل<em>جَتَرَ</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>گَبَرَ</em></string></test> - <test rtl="True"><string>ل<em>گَبَرَ</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>گَتَرَ</em></string></test> - <test rtl="True"><string>ل<em>گَتَرَ</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>سَبَرَ</em></string></test> - <test rtl="True"><string>ل<em>سَبَرَ</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>سَتَرَ</em></string></test> - <test rtl="True"><string>ل<em>سَتَرَ</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>طَبَرَ</em></string></test> - <test rtl="True"><string>ل<em>طَبَرَ</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>طَتَرَ</em></string></test> - <test rtl="True"><string>ل<em>طَتَرَ</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>تِبِرِ</em></string></test> - <test rtl="True"><string>ل<em>تِبِرِ</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>تِتِرِ</em></string></test> - <test rtl="True"><string>ل<em>تِتِرِ</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>لِبِرِ</em></string></test> - <test rtl="True"><string>ل<em>لِبِرِ</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>لِتِرِ</em></string></test> - <test rtl="True"><string>ل<em>لِتِرِ</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>بِبِرِ</em></string></test> - <test rtl="True"><string>ل<em>بِبِرِ</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>بِتِرِ</em></string></test> - <test rtl="True"><string>ل<em>بِتِرِ</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>کِبِرِ</em></string></test> - <test rtl="True"><string>ل<em>کِبِرِ</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>کِتِرِ</em></string></test> - <test rtl="True"><string>ل<em>کِتِرِ</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>ھِبِرِ</em></string></test> - <test rtl="True"><string>ل<em>ھِبِرِ</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>ھِتِرِ</em></string></test> - <test rtl="True"><string>ل<em>ھِتِرِ</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>ہِبِرِ</em></string></test> - <test rtl="True"><string>ل<em>ہِبِرِ</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>ہِتِرِ</em></string></test> - <test rtl="True"><string>ل<em>ہِتِرِ</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>فِبِرِ</em></string></test> - <test rtl="True"><string>ل<em>فِبِرِ</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>فِتِرِ</em></string></test> - <test rtl="True"><string>ل<em>فِتِرِ</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>صِبِرِ</em></string></test> - <test rtl="True"><string>ل<em>صِبِرِ</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>صِتِرِ</em></string></test> - <test rtl="True"><string>ل<em>صِتِرِ</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>مِبِرِ</em></string></test> - <test rtl="True"><string>ل<em>مِبِرِ</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>مِتِرِ</em></string></test> - <test rtl="True"><string>ل<em>مِتِرِ</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>عِبِرِ</em></string></test> - <test rtl="True"><string>ل<em>عِبِرِ</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>عِتِرِ</em></string></test> - <test rtl="True"><string>ل<em>عِتِرِ</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>جِبِرِ</em></string></test> - <test rtl="True"><string>ل<em>جِبِرِ</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>جِتِرِ</em></string></test> - <test rtl="True"><string>ل<em>جِتِرِ</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>گِبِرِ</em></string></test> - <test rtl="True"><string>ل<em>گِبِرِ</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>گِتِرِ</em></string></test> - <test rtl="True"><string>ل<em>گِتِرِ</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>سِبِرِ</em></string></test> - <test rtl="True"><string>ل<em>سِبِرِ</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>سِتِرِ</em></string></test> - <test rtl="True"><string>ل<em>سِتِرِ</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>طِبِرِ</em></string></test> - <test rtl="True"><string>ل<em>طِبِرِ</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>طِتِرِ</em></string></test> - <test rtl="True"><string>ل<em>طِتِرِ</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>تَبَنَ</em></string></test> - <test rtl="True"><string>ل<em>تَبَنَ</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>تَتَنَ</em></string></test> - <test rtl="True"><string>ل<em>تَتَنَ</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>لَبَنَ</em></string></test> - <test rtl="True"><string>ل<em>لَبَنَ</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>لَتَنَ</em></string></test> - <test rtl="True"><string>ل<em>لَتَنَ</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>بَبَنَ</em></string></test> - <test rtl="True"><string>ل<em>بَبَنَ</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>بَتَنَ</em></string></test> - <test rtl="True"><string>ل<em>بَتَنَ</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>کَبَنَ</em></string></test> - <test rtl="True"><string>ل<em>کَبَنَ</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>کَتَنَ</em></string></test> - <test rtl="True"><string>ل<em>کَتَنَ</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>ھَبَنَ</em></string></test> - <test rtl="True"><string>ل<em>ھَبَنَ</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>ھَتَنَ</em></string></test> - <test rtl="True"><string>ل<em>ھَتَنَ</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>ہَبَنَ</em></string></test> - <test rtl="True"><string>ل<em>ہَبَنَ</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>ہَتَنَ</em></string></test> - <test rtl="True"><string>ل<em>ہَتَنَ</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>فَبَنَ</em></string></test> - <test rtl="True"><string>ل<em>فَبَنَ</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>فَتَنَ</em></string></test> - <test rtl="True"><string>ل<em>فَتَنَ</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>صَبَنَ</em></string></test> - <test rtl="True"><string>ل<em>صَبَنَ</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>صَتَنَ</em></string></test> - <test rtl="True"><string>ل<em>صَتَنَ</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>مَبَنَ</em></string></test> - <test rtl="True"><string>ل<em>مَبَنَ</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>مَتَنَ</em></string></test> - <test rtl="True"><string>ل<em>مَتَنَ</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>عَبَنَ</em></string></test> - <test rtl="True"><string>ل<em>عَبَنَ</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>عَتَنَ</em></string></test> - <test rtl="True"><string>ل<em>عَتَنَ</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>جَبَنَ</em></string></test> - <test rtl="True"><string>ل<em>جَبَنَ</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>جَتَنَ</em></string></test> - <test rtl="True"><string>ل<em>جَتَنَ</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>گَبَنَ</em></string></test> - <test rtl="True"><string>ل<em>گَبَنَ</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>گَتَنَ</em></string></test> - <test rtl="True"><string>ل<em>گَتَنَ</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>سَبَنَ</em></string></test> - <test rtl="True"><string>ل<em>سَبَنَ</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>سَتَنَ</em></string></test> - <test rtl="True"><string>ل<em>سَتَنَ</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>طَبَنَ</em></string></test> - <test rtl="True"><string>ل<em>طَبَنَ</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>طَتَنَ</em></string></test> - <test rtl="True"><string>ل<em>طَتَنَ</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>تِبِنِ</em></string></test> - <test rtl="True"><string>ل<em>تِبِنِ</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>تِتِنِ</em></string></test> - <test rtl="True"><string>ل<em>تِتِنِ</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>لِبِنِ</em></string></test> - <test rtl="True"><string>ل<em>لِبِنِ</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>لِتِنِ</em></string></test> - <test rtl="True"><string>ل<em>لِتِنِ</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>بِبِنِ</em></string></test> - <test rtl="True"><string>ل<em>بِبِنِ</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>بِتِنِ</em></string></test> - <test rtl="True"><string>ل<em>بِتِنِ</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>کِبِنِ</em></string></test> - <test rtl="True"><string>ل<em>کِبِنِ</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>کِتِنِ</em></string></test> - <test rtl="True"><string>ل<em>کِتِنِ</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>ھِبِنِ</em></string></test> - <test rtl="True"><string>ل<em>ھِبِنِ</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>ھِتِنِ</em></string></test> - <test rtl="True"><string>ل<em>ھِتِنِ</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>ہِبِنِ</em></string></test> - <test rtl="True"><string>ل<em>ہِبِنِ</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>ہِتِنِ</em></string></test> - <test rtl="True"><string>ل<em>ہِتِنِ</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>فِبِنِ</em></string></test> - <test rtl="True"><string>ل<em>فِبِنِ</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>فِتِنِ</em></string></test> - <test rtl="True"><string>ل<em>فِتِنِ</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>صِبِنِ</em></string></test> - <test rtl="True"><string>ل<em>صِبِنِ</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>صِتِنِ</em></string></test> - <test rtl="True"><string>ل<em>صِتِنِ</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>مِبِنِ</em></string></test> - <test rtl="True"><string>ل<em>مِبِنِ</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>مِتِنِ</em></string></test> - <test rtl="True"><string>ل<em>مِتِنِ</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>عِبِنِ</em></string></test> - <test rtl="True"><string>ل<em>عِبِنِ</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>عِتِنِ</em></string></test> - <test rtl="True"><string>ل<em>عِتِنِ</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>جِبِنِ</em></string></test> - <test rtl="True"><string>ل<em>جِبِنِ</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>جِتِنِ</em></string></test> - <test rtl="True"><string>ل<em>جِتِنِ</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>گِبِنِ</em></string></test> - <test rtl="True"><string>ل<em>گِبِنِ</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>گِتِنِ</em></string></test> - <test rtl="True"><string>ل<em>گِتِنِ</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>سِبِنِ</em></string></test> - <test rtl="True"><string>ل<em>سِبِنِ</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>سِتِنِ</em></string></test> - <test rtl="True"><string>ل<em>سِتِنِ</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>طِبِنِ</em></string></test> - <test rtl="True"><string>ل<em>طِبِنِ</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>طِتِنِ</em></string></test> - <test rtl="True"><string>ل<em>طِتِنِ</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>تَبَہَ</em></string></test> - <test rtl="True"><string>ل<em>تَبَہَ</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>تَتَہَ</em></string></test> - <test rtl="True"><string>ل<em>تَتَہَ</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>لَبَہَ</em></string></test> - <test rtl="True"><string>ل<em>لَبَہَ</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>لَتَہَ</em></string></test> - <test rtl="True"><string>ل<em>لَتَہَ</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>بَبَہَ</em></string></test> - <test rtl="True"><string>ل<em>بَبَہَ</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>بَتَہَ</em></string></test> - <test rtl="True"><string>ل<em>بَتَہَ</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>کَبَہَ</em></string></test> - <test rtl="True"><string>ل<em>کَبَہَ</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>کَتَہَ</em></string></test> - <test rtl="True"><string>ل<em>کَتَہَ</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>ھَبَہَ</em></string></test> - <test rtl="True"><string>ل<em>ھَبَہَ</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>ھَتَہَ</em></string></test> - <test rtl="True"><string>ل<em>ھَتَہَ</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>ہَبَہَ</em></string></test> - <test rtl="True"><string>ل<em>ہَبَہَ</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>ہَتَہَ</em></string></test> - <test rtl="True"><string>ل<em>ہَتَہَ</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>فَبَہَ</em></string></test> - <test rtl="True"><string>ل<em>فَبَہَ</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>فَتَہَ</em></string></test> - <test rtl="True"><string>ل<em>فَتَہَ</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>صَبَہَ</em></string></test> - <test rtl="True"><string>ل<em>صَبَہَ</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>صَتَہَ</em></string></test> - <test rtl="True"><string>ل<em>صَتَہَ</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>مَبَہَ</em></string></test> - <test rtl="True"><string>ل<em>مَبَہَ</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>مَتَہَ</em></string></test> - <test rtl="True"><string>ل<em>مَتَہَ</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>عَبَہَ</em></string></test> - <test rtl="True"><string>ل<em>عَبَہَ</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>عَتَہَ</em></string></test> - <test rtl="True"><string>ل<em>عَتَہَ</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>جَبَہَ</em></string></test> - <test rtl="True"><string>ل<em>جَبَہَ</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>جَتَہَ</em></string></test> - <test rtl="True"><string>ل<em>جَتَہَ</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>گَبَہَ</em></string></test> - <test rtl="True"><string>ل<em>گَبَہَ</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>گَتَہَ</em></string></test> - <test rtl="True"><string>ل<em>گَتَہَ</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>سَبَہَ</em></string></test> - <test rtl="True"><string>ل<em>سَبَہَ</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>سَتَہَ</em></string></test> - <test rtl="True"><string>ل<em>سَتَہَ</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>طَبَہَ</em></string></test> - <test rtl="True"><string>ل<em>طَبَہَ</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>طَتَہَ</em></string></test> - <test rtl="True"><string>ل<em>طَتَہَ</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>تِبِہِ</em></string></test> - <test rtl="True"><string>ل<em>تِبِہِ</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>تِتِہِ</em></string></test> - <test rtl="True"><string>ل<em>تِتِہِ</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>لِبِہِ</em></string></test> - <test rtl="True"><string>ل<em>لِبِہِ</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>لِتِہِ</em></string></test> - <test rtl="True"><string>ل<em>لِتِہِ</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>بِبِہِ</em></string></test> - <test rtl="True"><string>ل<em>بِبِہِ</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>بِتِہِ</em></string></test> - <test rtl="True"><string>ل<em>بِتِہِ</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>کِبِہِ</em></string></test> - <test rtl="True"><string>ل<em>کِبِہِ</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>کِتِہِ</em></string></test> - <test rtl="True"><string>ل<em>کِتِہِ</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>ھِبِہِ</em></string></test> - <test rtl="True"><string>ل<em>ھِبِہِ</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>ھِتِہِ</em></string></test> - <test rtl="True"><string>ل<em>ھِتِہِ</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>ہِبِہِ</em></string></test> - <test rtl="True"><string>ل<em>ہِبِہِ</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>ہِتِہِ</em></string></test> - <test rtl="True"><string>ل<em>ہِتِہِ</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>فِبِہِ</em></string></test> - <test rtl="True"><string>ل<em>فِبِہِ</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>فِتِہِ</em></string></test> - <test rtl="True"><string>ل<em>فِتِہِ</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>صِبِہِ</em></string></test> - <test rtl="True"><string>ل<em>صِبِہِ</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>صِتِہِ</em></string></test> - <test rtl="True"><string>ل<em>صِتِہِ</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>مِبِہِ</em></string></test> - <test rtl="True"><string>ل<em>مِبِہِ</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>مِتِہِ</em></string></test> - <test rtl="True"><string>ل<em>مِتِہِ</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>عِبِہِ</em></string></test> - <test rtl="True"><string>ل<em>عِبِہِ</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>عِتِہِ</em></string></test> - <test rtl="True"><string>ل<em>عِتِہِ</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>جِبِہِ</em></string></test> - <test rtl="True"><string>ل<em>جِبِہِ</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>جِتِہِ</em></string></test> - <test rtl="True"><string>ل<em>جِتِہِ</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>گِبِہِ</em></string></test> - <test rtl="True"><string>ل<em>گِبِہِ</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>گِتِہِ</em></string></test> - <test rtl="True"><string>ل<em>گِتِہِ</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>سِبِہِ</em></string></test> - <test rtl="True"><string>ل<em>سِبِہِ</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>سِتِہِ</em></string></test> - <test rtl="True"><string>ل<em>سِتِہِ</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>طِبِہِ</em></string></test> - <test rtl="True"><string>ل<em>طِبِہِ</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>طِتِہِ</em></string></test> - <test rtl="True"><string>ل<em>طِتِہِ</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>تَسَسَسَ</em></string></test> - <test rtl="True"><string>ل<em>تَسَسَسَ</em></string></test> - <test rtl="True"><string><em>تَسَسَسَ</em>ف</string></test> - <test rtl="True"><string>ل<em>تَسَسَسَ</em>ف</string></test> - </testgroup> - <testgroup label="lam + zabar + seen + zabar + seen + zabar + seen + zabar"> - <test rtl="True"><string><em>لَسَسَسَ</em></string></test> - <test rtl="True"><string>ل<em>لَسَسَسَ</em></string></test> - <test rtl="True"><string><em>لَسَسَسَ</em>ف</string></test> - <test rtl="True"><string>ل<em>لَسَسَسَ</em>ف</string></test> - </testgroup> - <testgroup label="beh + zabar + seen + zabar + seen + zabar + seen + zabar"> - <test rtl="True"><string><em>بَسَسَسَ</em></string></test> - <test rtl="True"><string>ل<em>بَسَسَسَ</em></string></test> - <test rtl="True"><string><em>بَسَسَسَ</em>ف</string></test> - <test rtl="True"><string>ل<em>بَسَسَسَ</em>ف</string></test> - </testgroup> - <testgroup label="kaf + zabar + seen + zabar + seen + zabar + seen + zabar"> - <test rtl="True"><string><em>کَسَسَسَ</em></string></test> - <test rtl="True"><string>ل<em>کَسَسَسَ</em></string></test> - <test rtl="True"><string><em>کَسَسَسَ</em>ف</string></test> - <test rtl="True"><string>ل<em>کَسَسَسَ</em>ف</string></test> - </testgroup> - <testgroup label="hehDo + zabar + seen + zabar + seen + zabar + seen + zabar"> - <test rtl="True"><string><em>ھَسَسَسَ</em></string></test> - <test rtl="True"><string>ل<em>ھَسَسَسَ</em></string></test> - <test rtl="True"><string><em>ھَسَسَسَ</em>ف</string></test> - <test rtl="True"><string>ل<em>ھَسَسَسَ</em>ف</string></test> - </testgroup> - <testgroup label="hehGoal + zabar + seen + zabar + seen + zabar + seen + zabar"> - <test rtl="True"><string><em>ہَسَسَسَ</em></string></test> - <test rtl="True"><string>ل<em>ہَسَسَسَ</em></string></test> - <test rtl="True"><string><em>ہَسَسَسَ</em>ف</string></test> - <test rtl="True"><string>ل<em>ہَسَسَسَ</em>ف</string></test> - </testgroup> - <testgroup label="feh + zabar + seen + zabar + seen + zabar + seen + zabar"> - <test rtl="True"><string><em>فَسَسَسَ</em></string></test> - <test rtl="True"><string>ل<em>فَسَسَسَ</em></string></test> - <test rtl="True"><string><em>فَسَسَسَ</em>ف</string></test> - <test rtl="True"><string>ل<em>فَسَسَسَ</em>ف</string></test> - </testgroup> - <testgroup label="sad + zabar + seen + zabar + seen + zabar + seen + zabar"> - <test rtl="True"><string><em>صَسَسَسَ</em></string></test> - <test rtl="True"><string>ل<em>صَسَسَسَ</em></string></test> - <test rtl="True"><string><em>صَسَسَسَ</em>ف</string></test> - <test rtl="True"><string>ل<em>صَسَسَسَ</em>ف</string></test> - </testgroup> - <testgroup label="meem + zabar + seen + zabar + seen + zabar + seen + zabar"> - <test rtl="True"><string><em>مَسَسَسَ</em></string></test> - <test rtl="True"><string>ل<em>مَسَسَسَ</em></string></test> - <test rtl="True"><string><em>مَسَسَسَ</em>ف</string></test> - <test rtl="True"><string>ل<em>مَسَسَسَ</em>ف</string></test> - </testgroup> - <testgroup label="ain + zabar + seen + zabar + seen + zabar + seen + zabar"> - <test rtl="True"><string><em>عَسَسَسَ</em></string></test> - <test rtl="True"><string>ل<em>عَسَسَسَ</em></string></test> - <test rtl="True"><string><em>عَسَسَسَ</em>ف</string></test> - <test rtl="True"><string>ل<em>عَسَسَسَ</em>ف</string></test> - </testgroup> - <testgroup label="jeem + zabar + seen + zabar + seen + zabar + seen + zabar"> - <test rtl="True"><string><em>جَسَسَسَ</em></string></test> - <test rtl="True"><string>ل<em>جَسَسَسَ</em></string></test> - <test rtl="True"><string><em>جَسَسَسَ</em>ف</string></test> - <test rtl="True"><string>ل<em>جَسَسَسَ</em>ف</string></test> - </testgroup> - <testgroup label="gaf + zabar + seen + zabar + seen + zabar + seen + zabar"> - <test rtl="True"><string><em>گَسَسَسَ</em></string></test> - <test rtl="True"><string>ل<em>گَسَسَسَ</em></string></test> - <test rtl="True"><string><em>گَسَسَسَ</em>ف</string></test> - <test rtl="True"><string>ل<em>گَسَسَسَ</em>ف</string></test> - </testgroup> - <testgroup label="seen + zabar + seen + zabar + seen + zabar + seen + zabar"> - <test rtl="True"><string><em>سَسَسَسَ</em></string></test> - <test rtl="True"><string>ل<em>سَسَسَسَ</em></string></test> - <test rtl="True"><string><em>سَسَسَسَ</em>ف</string></test> - <test rtl="True"><string>ل<em>سَسَسَسَ</em>ف</string></test> - </testgroup> - <testgroup label="tah + zabar + seen + zabar + seen + zabar + seen + zabar"> - <test rtl="True"><string><em>طَسَسَسَ</em></string></test> - <test rtl="True"><string>ل<em>طَسَسَسَ</em></string></test> - <test rtl="True"><string><em>طَسَسَسَ</em>ف</string></test> - <test rtl="True"><string>ل<em>طَسَسَسَ</em>ف</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>تِسِسِسِ</em></string></test> - <test rtl="True"><string>ل<em>تِسِسِسِ</em></string></test> - <test rtl="True"><string><em>تِسِسِسِ</em>ف</string></test> - <test rtl="True"><string>ل<em>تِسِسِسِ</em>ف</string></test> - </testgroup> - <testgroup label="lam + zair + seen + zair + seen + zair + seen + zair"> - <test rtl="True"><string><em>لِسِسِسِ</em></string></test> - <test rtl="True"><string>ل<em>لِسِسِسِ</em></string></test> - <test rtl="True"><string><em>لِسِسِسِ</em>ف</string></test> - <test rtl="True"><string>ل<em>لِسِسِسِ</em>ف</string></test> - </testgroup> - <testgroup label="beh + zair + seen + zair + seen + zair + seen + zair"> - <test rtl="True"><string><em>بِسِسِسِ</em></string></test> - <test rtl="True"><string>ل<em>بِسِسِسِ</em></string></test> - <test rtl="True"><string><em>بِسِسِسِ</em>ف</string></test> - <test rtl="True"><string>ل<em>بِسِسِسِ</em>ف</string></test> - </testgroup> - <testgroup label="kaf + zair + seen + zair + seen + zair + seen + zair"> - <test rtl="True"><string><em>کِسِسِسِ</em></string></test> - <test rtl="True"><string>ل<em>کِسِسِسِ</em></string></test> - <test rtl="True"><string><em>کِسِسِسِ</em>ف</string></test> - <test rtl="True"><string>ل<em>کِسِسِسِ</em>ف</string></test> - </testgroup> - <testgroup label="hehDo + zair + seen + zair + seen + zair + seen + zair"> - <test rtl="True"><string><em>ھِسِسِسِ</em></string></test> - <test rtl="True"><string>ل<em>ھِسِسِسِ</em></string></test> - <test rtl="True"><string><em>ھِسِسِسِ</em>ف</string></test> - <test rtl="True"><string>ل<em>ھِسِسِسِ</em>ف</string></test> - </testgroup> - <testgroup label="hehGoal + zair + seen + zair + seen + zair + seen + zair"> - <test rtl="True"><string><em>ہِسِسِسِ</em></string></test> - <test rtl="True"><string>ل<em>ہِسِسِسِ</em></string></test> - <test rtl="True"><string><em>ہِسِسِسِ</em>ف</string></test> - <test rtl="True"><string>ل<em>ہِسِسِسِ</em>ف</string></test> - </testgroup> - <testgroup label="feh + zair + seen + zair + seen + zair + seen + zair"> - <test rtl="True"><string><em>فِسِسِسِ</em></string></test> - <test rtl="True"><string>ل<em>فِسِسِسِ</em></string></test> - <test rtl="True"><string><em>فِسِسِسِ</em>ف</string></test> - <test rtl="True"><string>ل<em>فِسِسِسِ</em>ف</string></test> - </testgroup> - <testgroup label="sad + zair + seen + zair + seen + zair + seen + zair"> - <test rtl="True"><string><em>صِسِسِسِ</em></string></test> - <test rtl="True"><string>ل<em>صِسِسِسِ</em></string></test> - <test rtl="True"><string><em>صِسِسِسِ</em>ف</string></test> - <test rtl="True"><string>ل<em>صِسِسِسِ</em>ف</string></test> - </testgroup> - <testgroup label="meem + zair + seen + zair + seen + zair + seen + zair"> - <test rtl="True"><string><em>مِسِسِسِ</em></string></test> - <test rtl="True"><string>ل<em>مِسِسِسِ</em></string></test> - <test rtl="True"><string><em>مِسِسِسِ</em>ف</string></test> - <test rtl="True"><string>ل<em>مِسِسِسِ</em>ف</string></test> - </testgroup> - <testgroup label="ain + zair + seen + zair + seen + zair + seen + zair"> - <test rtl="True"><string><em>عِسِسِسِ</em></string></test> - <test rtl="True"><string>ل<em>عِسِسِسِ</em></string></test> - <test rtl="True"><string><em>عِسِسِسِ</em>ف</string></test> - <test rtl="True"><string>ل<em>عِسِسِسِ</em>ف</string></test> - </testgroup> - <testgroup label="jeem + zair + seen + zair + seen + zair + seen + zair"> - <test rtl="True"><string><em>جِسِسِسِ</em></string></test> - <test rtl="True"><string>ل<em>جِسِسِسِ</em></string></test> - <test rtl="True"><string><em>جِسِسِسِ</em>ف</string></test> - <test rtl="True"><string>ل<em>جِسِسِسِ</em>ف</string></test> - </testgroup> - <testgroup label="gaf + zair + seen + zair + seen + zair + seen + zair"> - <test rtl="True"><string><em>گِسِسِسِ</em></string></test> - <test rtl="True"><string>ل<em>گِسِسِسِ</em></string></test> - <test rtl="True"><string><em>گِسِسِسِ</em>ف</string></test> - <test rtl="True"><string>ل<em>گِسِسِسِ</em>ف</string></test> - </testgroup> - <testgroup label="seen + zair + seen + zair + seen + zair + seen + zair"> - <test rtl="True"><string><em>سِسِسِسِ</em></string></test> - <test rtl="True"><string>ل<em>سِسِسِسِ</em></string></test> - <test rtl="True"><string><em>سِسِسِسِ</em>ف</string></test> - <test rtl="True"><string>ل<em>سِسِسِسِ</em>ف</string></test> - </testgroup> - <testgroup label="tah + zair + seen + zair + seen + zair + seen + zair"> - <test rtl="True"><string><em>طِسِسِسِ</em></string></test> - <test rtl="True"><string>ل<em>طِسِسِسِ</em></string></test> - <test rtl="True"><string><em>طِسِسِسِ</em>ف</string></test> - <test rtl="True"><string>ل<em>طِسِسِسِ</em>ف</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>با</em></string></test> - <test rtl="True"><string>ل<em>با</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>جا</em></string></test> - <test rtl="True"><string>ل<em>جا</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>سا</em></string></test> - <test rtl="True"><string>ل<em>سا</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>صا</em></string></test> - <test rtl="True"><string>ل<em>صا</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>طا</em></string></test> - <test rtl="True"><string>ل<em>طا</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>عا</em></string></test> - <test rtl="True"><string>ل<em>عا</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>فا</em></string></test> - <test rtl="True"><string>ل<em>فا</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>لا</em></string></test> - <test rtl="True"><string>ل<em>لا</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>ما</em></string></test> - <test rtl="True"><string>ل<em>ما</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>کا</em></string></test> - <test rtl="True"><string>ل<em>کا</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>گا</em></string></test> - <test rtl="True"><string>ل<em>گا</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>ھا</em></string></test> - <test rtl="True"><string>ل<em>ھا</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>ہا</em></string></test> - <test rtl="True"><string>ل<em>ہا</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>بب</em></string></test> - <test rtl="True"><string>ل<em>بب</em></string></test> - <test rtl="True"><string><em>بب</em>ف</string></test> - <test rtl="True"><string>ل<em>بب</em>ف</string></test> - </testgroup> - <testgroup label="jeem + beh"> - <test rtl="True"><string><em>جب</em></string></test> - <test rtl="True"><string>ل<em>جب</em></string></test> - <test rtl="True"><string><em>جب</em>ف</string></test> - <test rtl="True"><string>ل<em>جب</em>ف</string></test> - </testgroup> - <testgroup label="seen + beh"> - <test rtl="True"><string><em>سب</em></string></test> - <test rtl="True"><string>ل<em>سب</em></string></test> - <test rtl="True"><string><em>سب</em>ف</string></test> - <test rtl="True"><string>ل<em>سب</em>ف</string></test> - </testgroup> - <testgroup label="sad + beh"> - <test rtl="True"><string><em>صب</em></string></test> - <test rtl="True"><string>ل<em>صب</em></string></test> - <test rtl="True"><string><em>صب</em>ف</string></test> - <test rtl="True"><string>ل<em>صب</em>ف</string></test> - </testgroup> - <testgroup label="tah + beh"> - <test rtl="True"><string><em>طب</em></string></test> - <test rtl="True"><string>ل<em>طب</em></string></test> - <test rtl="True"><string><em>طب</em>ف</string></test> - <test rtl="True"><string>ل<em>طب</em>ف</string></test> - </testgroup> - <testgroup label="ain + beh"> - <test rtl="True"><string><em>عب</em></string></test> - <test rtl="True"><string>ل<em>عب</em></string></test> - <test rtl="True"><string><em>عب</em>ف</string></test> - <test rtl="True"><string>ل<em>عب</em>ف</string></test> - </testgroup> - <testgroup label="feh + beh"> - <test rtl="True"><string><em>فب</em></string></test> - <test rtl="True"><string>ل<em>فب</em></string></test> - <test rtl="True"><string><em>فب</em>ف</string></test> - <test rtl="True"><string>ل<em>فب</em>ف</string></test> - </testgroup> - <testgroup label="lam + beh"> - <test rtl="True"><string><em>لب</em></string></test> - <test rtl="True"><string>ل<em>لب</em></string></test> - <test rtl="True"><string><em>لب</em>ف</string></test> - <test rtl="True"><string>ل<em>لب</em>ف</string></test> - </testgroup> - <testgroup label="meem + beh"> - <test rtl="True"><string><em>مب</em></string></test> - <test rtl="True"><string>ل<em>مب</em></string></test> - <test rtl="True"><string><em>مب</em>ف</string></test> - <test rtl="True"><string>ل<em>مب</em>ف</string></test> - </testgroup> - <testgroup label="kaf + beh"> - <test rtl="True"><string><em>کب</em></string></test> - <test rtl="True"><string>ل<em>کب</em></string></test> - <test rtl="True"><string><em>کب</em>ف</string></test> - <test rtl="True"><string>ل<em>کب</em>ف</string></test> - </testgroup> - <testgroup label="gaf + beh"> - <test rtl="True"><string><em>گب</em></string></test> - <test rtl="True"><string>ل<em>گب</em></string></test> - <test rtl="True"><string><em>گب</em>ف</string></test> - <test rtl="True"><string>ل<em>گب</em>ف</string></test> - </testgroup> - <testgroup label="hehDo + beh"> - <test rtl="True"><string><em>ھب</em></string></test> - <test rtl="True"><string>ل<em>ھب</em></string></test> - <test rtl="True"><string><em>ھب</em>ف</string></test> - <test rtl="True"><string>ل<em>ھب</em>ف</string></test> - </testgroup> - <testgroup label="hehGoal + beh"> - <test rtl="True"><string><em>ہب</em></string></test> - <test rtl="True"><string>ل<em>ہب</em></string></test> - <test rtl="True"><string><em>ہب</em>ف</string></test> - <test rtl="True"><string>ل<em>ہب</em>ف</string></test> - </testgroup> - </testgroup> - <testgroup label="Jeem form sequences"> - <testgroup label="beh + jeem"> - <test rtl="True"><string><em>بج</em></string></test> - <test rtl="True"><string>ل<em>بج</em></string></test> - <test rtl="True"><string><em>بج</em>ف</string></test> - <test rtl="True"><string>ل<em>بج</em>ف</string></test> - </testgroup> - <testgroup label="jeem + jeem"> - <test rtl="True"><string><em>جج</em></string></test> - <test rtl="True"><string>ل<em>جج</em></string></test> - <test rtl="True"><string><em>جج</em>ف</string></test> - <test rtl="True"><string>ل<em>جج</em>ف</string></test> - </testgroup> - <testgroup label="seen + jeem"> - <test rtl="True"><string><em>سج</em></string></test> - <test rtl="True"><string>ل<em>سج</em></string></test> - <test rtl="True"><string><em>سج</em>ف</string></test> - <test rtl="True"><string>ل<em>سج</em>ف</string></test> - </testgroup> - <testgroup label="sad + jeem"> - <test rtl="True"><string><em>صج</em></string></test> - <test rtl="True"><string>ل<em>صج</em></string></test> - <test rtl="True"><string><em>صج</em>ف</string></test> - <test rtl="True"><string>ل<em>صج</em>ف</string></test> - </testgroup> - <testgroup label="tah + jeem"> - <test rtl="True"><string><em>طج</em></string></test> - <test rtl="True"><string>ل<em>طج</em></string></test> - <test rtl="True"><string><em>طج</em>ف</string></test> - <test rtl="True"><string>ل<em>طج</em>ف</string></test> - </testgroup> - <testgroup label="ain + jeem"> - <test rtl="True"><string><em>عج</em></string></test> - <test rtl="True"><string>ل<em>عج</em></string></test> - <test rtl="True"><string><em>عج</em>ف</string></test> - <test rtl="True"><string>ل<em>عج</em>ف</string></test> - </testgroup> - <testgroup label="feh + jeem"> - <test rtl="True"><string><em>فج</em></string></test> - <test rtl="True"><string>ل<em>فج</em></string></test> - <test rtl="True"><string><em>فج</em>ف</string></test> - <test rtl="True"><string>ل<em>فج</em>ف</string></test> - </testgroup> - <testgroup label="lam + jeem"> - <test rtl="True"><string><em>لج</em></string></test> - <test rtl="True"><string>ل<em>لج</em></string></test> - <test rtl="True"><string><em>لج</em>ف</string></test> - <test rtl="True"><string>ل<em>لج</em>ف</string></test> - </testgroup> - <testgroup label="meem + jeem"> - <test rtl="True"><string><em>مج</em></string></test> - <test rtl="True"><string>ل<em>مج</em></string></test> - <test rtl="True"><string><em>مج</em>ف</string></test> - <test rtl="True"><string>ل<em>مج</em>ف</string></test> - </testgroup> - <testgroup label="kaf + jeem"> - <test rtl="True"><string><em>کج</em></string></test> - <test rtl="True"><string>ل<em>کج</em></string></test> - <test rtl="True"><string><em>کج</em>ف</string></test> - <test rtl="True"><string>ل<em>کج</em>ف</string></test> - </testgroup> - <testgroup label="gaf + jeem"> - <test rtl="True"><string><em>گج</em></string></test> - <test rtl="True"><string>ل<em>گج</em></string></test> - <test rtl="True"><string><em>گج</em>ف</string></test> - <test rtl="True"><string>ل<em>گج</em>ف</string></test> - </testgroup> - <testgroup label="hehDo + jeem"> - <test rtl="True"><string><em>ھج</em></string></test> - <test rtl="True"><string>ل<em>ھج</em></string></test> - <test rtl="True"><string><em>ھج</em>ف</string></test> - <test rtl="True"><string>ل<em>ھج</em>ف</string></test> - </testgroup> - <testgroup label="hehGoal + jeem"> - <test rtl="True"><string><em>ہج</em></string></test> - <test rtl="True"><string>ل<em>ہج</em></string></test> - <test rtl="True"><string><em>ہج</em>ف</string></test> - <test rtl="True"><string>ل<em>ہج</em>ف</string></test> - </testgroup> - </testgroup> - <testgroup label="Dal form sequences"> - <testgroup label="beh + dal"> - <test rtl="True"><string><em>بد</em></string></test> - <test rtl="True"><string>ل<em>بد</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>جد</em></string></test> - <test rtl="True"><string>ل<em>جد</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>سد</em></string></test> - <test rtl="True"><string>ل<em>سد</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>صد</em></string></test> - <test rtl="True"><string>ل<em>صد</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>طد</em></string></test> - <test rtl="True"><string>ل<em>طد</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>عد</em></string></test> - <test rtl="True"><string>ل<em>عد</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>فد</em></string></test> - <test rtl="True"><string>ل<em>فد</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>لد</em></string></test> - <test rtl="True"><string>ل<em>لد</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>مد</em></string></test> - <test rtl="True"><string>ل<em>مد</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>کد</em></string></test> - <test rtl="True"><string>ل<em>کد</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>گد</em></string></test> - <test rtl="True"><string>ل<em>گد</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>ھد</em></string></test> - <test rtl="True"><string>ل<em>ھد</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>ہد</em></string></test> - <test rtl="True"><string>ل<em>ہد</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>بر</em></string></test> - <test rtl="True"><string>ل<em>بر</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>جر</em></string></test> - <test rtl="True"><string>ل<em>جر</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>سر</em></string></test> - <test rtl="True"><string>ل<em>سر</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>صر</em></string></test> - <test rtl="True"><string>ل<em>صر</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>طر</em></string></test> - <test rtl="True"><string>ل<em>طر</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>عر</em></string></test> - <test rtl="True"><string>ل<em>عر</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>فر</em></string></test> - <test rtl="True"><string>ل<em>فر</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>لر</em></string></test> - <test rtl="True"><string>ل<em>لر</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>مر</em></string></test> - <test rtl="True"><string>ل<em>مر</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>کر</em></string></test> - <test rtl="True"><string>ل<em>کر</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>گر</em></string></test> - <test rtl="True"><string>ل<em>گر</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>ھر</em></string></test> - <test rtl="True"><string>ل<em>ھر</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>ہر</em></string></test> - <test rtl="True"><string>ل<em>ہر</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>بس</em></string></test> - <test rtl="True"><string>ل<em>بس</em></string></test> - <test rtl="True"><string><em>بس</em>ف</string></test> - <test rtl="True"><string>ل<em>بس</em>ف</string></test> - </testgroup> - <testgroup label="jeem + seen"> - <test rtl="True"><string><em>جس</em></string></test> - <test rtl="True"><string>ل<em>جس</em></string></test> - <test rtl="True"><string><em>جس</em>ف</string></test> - <test rtl="True"><string>ل<em>جس</em>ف</string></test> - </testgroup> - <testgroup label="seen + seen"> - <test rtl="True"><string><em>سس</em></string></test> - <test rtl="True"><string>ل<em>سس</em></string></test> - <test rtl="True"><string><em>سس</em>ف</string></test> - <test rtl="True"><string>ل<em>سس</em>ف</string></test> - </testgroup> - <testgroup label="sad + seen"> - <test rtl="True"><string><em>صس</em></string></test> - <test rtl="True"><string>ل<em>صس</em></string></test> - <test rtl="True"><string><em>صس</em>ف</string></test> - <test rtl="True"><string>ل<em>صس</em>ف</string></test> - </testgroup> - <testgroup label="tah + seen"> - <test rtl="True"><string><em>طس</em></string></test> - <test rtl="True"><string>ل<em>طس</em></string></test> - <test rtl="True"><string><em>طس</em>ف</string></test> - <test rtl="True"><string>ل<em>طس</em>ف</string></test> - </testgroup> - <testgroup label="ain + seen"> - <test rtl="True"><string><em>عس</em></string></test> - <test rtl="True"><string>ل<em>عس</em></string></test> - <test rtl="True"><string><em>عس</em>ف</string></test> - <test rtl="True"><string>ل<em>عس</em>ف</string></test> - </testgroup> - <testgroup label="feh + seen"> - <test rtl="True"><string><em>فس</em></string></test> - <test rtl="True"><string>ل<em>فس</em></string></test> - <test rtl="True"><string><em>فس</em>ف</string></test> - <test rtl="True"><string>ل<em>فس</em>ف</string></test> - </testgroup> - <testgroup label="lam + seen"> - <test rtl="True"><string><em>لس</em></string></test> - <test rtl="True"><string>ل<em>لس</em></string></test> - <test rtl="True"><string><em>لس</em>ف</string></test> - <test rtl="True"><string>ل<em>لس</em>ف</string></test> - </testgroup> - <testgroup label="meem + seen"> - <test rtl="True"><string><em>مس</em></string></test> - <test rtl="True"><string>ل<em>مس</em></string></test> - <test rtl="True"><string><em>مس</em>ف</string></test> - <test rtl="True"><string>ل<em>مس</em>ف</string></test> - </testgroup> - <testgroup label="kaf + seen"> - <test rtl="True"><string><em>کس</em></string></test> - <test rtl="True"><string>ل<em>کس</em></string></test> - <test rtl="True"><string><em>کس</em>ف</string></test> - <test rtl="True"><string>ل<em>کس</em>ف</string></test> - </testgroup> - <testgroup label="gaf + seen"> - <test rtl="True"><string><em>گس</em></string></test> - <test rtl="True"><string>ل<em>گس</em></string></test> - <test rtl="True"><string><em>گس</em>ف</string></test> - <test rtl="True"><string>ل<em>گس</em>ف</string></test> - </testgroup> - <testgroup label="hehDo + seen"> - <test rtl="True"><string><em>ھس</em></string></test> - <test rtl="True"><string>ل<em>ھس</em></string></test> - <test rtl="True"><string><em>ھس</em>ف</string></test> - <test rtl="True"><string>ل<em>ھس</em>ف</string></test> - </testgroup> - <testgroup label="hehGoal + seen"> - <test rtl="True"><string><em>ہس</em></string></test> - <test rtl="True"><string>ل<em>ہس</em></string></test> - <test rtl="True"><string><em>ہس</em>ف</string></test> - <test rtl="True"><string>ل<em>ہس</em>ف</string></test> - </testgroup> - </testgroup> - <testgroup label="Sad form sequences"> - <testgroup label="beh + sad"> - <test rtl="True"><string><em>بص</em></string></test> - <test rtl="True"><string>ل<em>بص</em></string></test> - <test rtl="True"><string><em>بص</em>ف</string></test> - <test rtl="True"><string>ل<em>بص</em>ف</string></test> - </testgroup> - <testgroup label="jeem + sad"> - <test rtl="True"><string><em>جص</em></string></test> - <test rtl="True"><string>ل<em>جص</em></string></test> - <test rtl="True"><string><em>جص</em>ف</string></test> - <test rtl="True"><string>ل<em>جص</em>ف</string></test> - </testgroup> - <testgroup label="seen + sad"> - <test rtl="True"><string><em>سص</em></string></test> - <test rtl="True"><string>ل<em>سص</em></string></test> - <test rtl="True"><string><em>سص</em>ف</string></test> - <test rtl="True"><string>ل<em>سص</em>ف</string></test> - </testgroup> - <testgroup label="sad + sad"> - <test rtl="True"><string><em>صص</em></string></test> - <test rtl="True"><string>ل<em>صص</em></string></test> - <test rtl="True"><string><em>صص</em>ف</string></test> - <test rtl="True"><string>ل<em>صص</em>ف</string></test> - </testgroup> - <testgroup label="tah + sad"> - <test rtl="True"><string><em>طص</em></string></test> - <test rtl="True"><string>ل<em>طص</em></string></test> - <test rtl="True"><string><em>طص</em>ف</string></test> - <test rtl="True"><string>ل<em>طص</em>ف</string></test> - </testgroup> - <testgroup label="ain + sad"> - <test rtl="True"><string><em>عص</em></string></test> - <test rtl="True"><string>ل<em>عص</em></string></test> - <test rtl="True"><string><em>عص</em>ف</string></test> - <test rtl="True"><string>ل<em>عص</em>ف</string></test> - </testgroup> - <testgroup label="feh + sad"> - <test rtl="True"><string><em>فص</em></string></test> - <test rtl="True"><string>ل<em>فص</em></string></test> - <test rtl="True"><string><em>فص</em>ف</string></test> - <test rtl="True"><string>ل<em>فص</em>ف</string></test> - </testgroup> - <testgroup label="lam + sad"> - <test rtl="True"><string><em>لص</em></string></test> - <test rtl="True"><string>ل<em>لص</em></string></test> - <test rtl="True"><string><em>لص</em>ف</string></test> - <test rtl="True"><string>ل<em>لص</em>ف</string></test> - </testgroup> - <testgroup label="meem + sad"> - <test rtl="True"><string><em>مص</em></string></test> - <test rtl="True"><string>ل<em>مص</em></string></test> - <test rtl="True"><string><em>مص</em>ف</string></test> - <test rtl="True"><string>ل<em>مص</em>ف</string></test> - </testgroup> - <testgroup label="kaf + sad"> - <test rtl="True"><string><em>کص</em></string></test> - <test rtl="True"><string>ل<em>کص</em></string></test> - <test rtl="True"><string><em>کص</em>ف</string></test> - <test rtl="True"><string>ل<em>کص</em>ف</string></test> - </testgroup> - <testgroup label="gaf + sad"> - <test rtl="True"><string><em>گص</em></string></test> - <test rtl="True"><string>ل<em>گص</em></string></test> - <test rtl="True"><string><em>گص</em>ف</string></test> - <test rtl="True"><string>ل<em>گص</em>ف</string></test> - </testgroup> - <testgroup label="hehDo + sad"> - <test rtl="True"><string><em>ھص</em></string></test> - <test rtl="True"><string>ل<em>ھص</em></string></test> - <test rtl="True"><string><em>ھص</em>ف</string></test> - <test rtl="True"><string>ل<em>ھص</em>ف</string></test> - </testgroup> - <testgroup label="hehGoal + sad"> - <test rtl="True"><string><em>ہص</em></string></test> - <test rtl="True"><string>ل<em>ہص</em></string></test> - <test rtl="True"><string><em>ہص</em>ف</string></test> - <test rtl="True"><string>ل<em>ہص</em>ف</string></test> - </testgroup> - </testgroup> - <testgroup label="Tah form sequences"> - <testgroup label="beh + tah"> - <test rtl="True"><string><em>بط</em></string></test> - <test rtl="True"><string>ل<em>بط</em></string></test> - <test rtl="True"><string><em>بط</em>ف</string></test> - <test rtl="True"><string>ل<em>بط</em>ف</string></test> - </testgroup> - <testgroup label="jeem + tah"> - <test rtl="True"><string><em>جط</em></string></test> - <test rtl="True"><string>ل<em>جط</em></string></test> - <test rtl="True"><string><em>جط</em>ف</string></test> - <test rtl="True"><string>ل<em>جط</em>ف</string></test> - </testgroup> - <testgroup label="seen + tah"> - <test rtl="True"><string><em>سط</em></string></test> - <test rtl="True"><string>ل<em>سط</em></string></test> - <test rtl="True"><string><em>سط</em>ف</string></test> - <test rtl="True"><string>ل<em>سط</em>ف</string></test> - </testgroup> - <testgroup label="sad + tah"> - <test rtl="True"><string><em>صط</em></string></test> - <test rtl="True"><string>ل<em>صط</em></string></test> - <test rtl="True"><string><em>صط</em>ف</string></test> - <test rtl="True"><string>ل<em>صط</em>ف</string></test> - </testgroup> - <testgroup label="tah + tah"> - <test rtl="True"><string><em>طط</em></string></test> - <test rtl="True"><string>ل<em>طط</em></string></test> - <test rtl="True"><string><em>طط</em>ف</string></test> - <test rtl="True"><string>ل<em>طط</em>ف</string></test> - </testgroup> - <testgroup label="ain + tah"> - <test rtl="True"><string><em>عط</em></string></test> - <test rtl="True"><string>ل<em>عط</em></string></test> - <test rtl="True"><string><em>عط</em>ف</string></test> - <test rtl="True"><string>ل<em>عط</em>ف</string></test> - </testgroup> - <testgroup label="feh + tah"> - <test rtl="True"><string><em>فط</em></string></test> - <test rtl="True"><string>ل<em>فط</em></string></test> - <test rtl="True"><string><em>فط</em>ف</string></test> - <test rtl="True"><string>ل<em>فط</em>ف</string></test> - </testgroup> - <testgroup label="lam + tah"> - <test rtl="True"><string><em>لط</em></string></test> - <test rtl="True"><string>ل<em>لط</em></string></test> - <test rtl="True"><string><em>لط</em>ف</string></test> - <test rtl="True"><string>ل<em>لط</em>ف</string></test> - </testgroup> - <testgroup label="meem + tah"> - <test rtl="True"><string><em>مط</em></string></test> - <test rtl="True"><string>ل<em>مط</em></string></test> - <test rtl="True"><string><em>مط</em>ف</string></test> - <test rtl="True"><string>ل<em>مط</em>ف</string></test> - </testgroup> - <testgroup label="kaf + tah"> - <test rtl="True"><string><em>کط</em></string></test> - <test rtl="True"><string>ل<em>کط</em></string></test> - <test rtl="True"><string><em>کط</em>ف</string></test> - <test rtl="True"><string>ل<em>کط</em>ف</string></test> - </testgroup> - <testgroup label="gaf + tah"> - <test rtl="True"><string><em>گط</em></string></test> - <test rtl="True"><string>ل<em>گط</em></string></test> - <test rtl="True"><string><em>گط</em>ف</string></test> - <test rtl="True"><string>ل<em>گط</em>ف</string></test> - </testgroup> - <testgroup label="hehDo + tah"> - <test rtl="True"><string><em>ھط</em></string></test> - <test rtl="True"><string>ل<em>ھط</em></string></test> - <test rtl="True"><string><em>ھط</em>ف</string></test> - <test rtl="True"><string>ل<em>ھط</em>ف</string></test> - </testgroup> - <testgroup label="hehGoal + tah"> - <test rtl="True"><string><em>ہط</em></string></test> - <test rtl="True"><string>ل<em>ہط</em></string></test> - <test rtl="True"><string><em>ہط</em>ف</string></test> - <test rtl="True"><string>ل<em>ہط</em>ف</string></test> - </testgroup> - </testgroup> - <testgroup label="Ain form sequences"> - <testgroup label="beh + ain"> - <test rtl="True"><string><em>بع</em></string></test> - <test rtl="True"><string>ل<em>بع</em></string></test> - <test rtl="True"><string><em>بع</em>ف</string></test> - <test rtl="True"><string>ل<em>بع</em>ف</string></test> - </testgroup> - <testgroup label="jeem + ain"> - <test rtl="True"><string><em>جع</em></string></test> - <test rtl="True"><string>ل<em>جع</em></string></test> - <test rtl="True"><string><em>جع</em>ف</string></test> - <test rtl="True"><string>ل<em>جع</em>ف</string></test> - </testgroup> - <testgroup label="seen + ain"> - <test rtl="True"><string><em>سع</em></string></test> - <test rtl="True"><string>ل<em>سع</em></string></test> - <test rtl="True"><string><em>سع</em>ف</string></test> - <test rtl="True"><string>ل<em>سع</em>ف</string></test> - </testgroup> - <testgroup label="sad + ain"> - <test rtl="True"><string><em>صع</em></string></test> - <test rtl="True"><string>ل<em>صع</em></string></test> - <test rtl="True"><string><em>صع</em>ف</string></test> - <test rtl="True"><string>ل<em>صع</em>ف</string></test> - </testgroup> - <testgroup label="tah + ain"> - <test rtl="True"><string><em>طع</em></string></test> - <test rtl="True"><string>ل<em>طع</em></string></test> - <test rtl="True"><string><em>طع</em>ف</string></test> - <test rtl="True"><string>ل<em>طع</em>ف</string></test> - </testgroup> - <testgroup label="ain + ain"> - <test rtl="True"><string><em>عع</em></string></test> - <test rtl="True"><string>ل<em>عع</em></string></test> - <test rtl="True"><string><em>عع</em>ف</string></test> - <test rtl="True"><string>ل<em>عع</em>ف</string></test> - </testgroup> - <testgroup label="feh + ain"> - <test rtl="True"><string><em>فع</em></string></test> - <test rtl="True"><string>ل<em>فع</em></string></test> - <test rtl="True"><string><em>فع</em>ف</string></test> - <test rtl="True"><string>ل<em>فع</em>ف</string></test> - </testgroup> - <testgroup label="lam + ain"> - <test rtl="True"><string><em>لع</em></string></test> - <test rtl="True"><string>ل<em>لع</em></string></test> - <test rtl="True"><string><em>لع</em>ف</string></test> - <test rtl="True"><string>ل<em>لع</em>ف</string></test> - </testgroup> - <testgroup label="meem + ain"> - <test rtl="True"><string><em>مع</em></string></test> - <test rtl="True"><string>ل<em>مع</em></string></test> - <test rtl="True"><string><em>مع</em>ف</string></test> - <test rtl="True"><string>ل<em>مع</em>ف</string></test> - </testgroup> - <testgroup label="kaf + ain"> - <test rtl="True"><string><em>کع</em></string></test> - <test rtl="True"><string>ل<em>کع</em></string></test> - <test rtl="True"><string><em>کع</em>ف</string></test> - <test rtl="True"><string>ل<em>کع</em>ف</string></test> - </testgroup> - <testgroup label="gaf + ain"> - <test rtl="True"><string><em>گع</em></string></test> - <test rtl="True"><string>ل<em>گع</em></string></test> - <test rtl="True"><string><em>گع</em>ف</string></test> - <test rtl="True"><string>ل<em>گع</em>ف</string></test> - </testgroup> - <testgroup label="hehDo + ain"> - <test rtl="True"><string><em>ھع</em></string></test> - <test rtl="True"><string>ل<em>ھع</em></string></test> - <test rtl="True"><string><em>ھع</em>ف</string></test> - <test rtl="True"><string>ل<em>ھع</em>ف</string></test> - </testgroup> - <testgroup label="hehGoal + ain"> - <test rtl="True"><string><em>ہع</em></string></test> - <test rtl="True"><string>ل<em>ہع</em></string></test> - <test rtl="True"><string><em>ہع</em>ف</string></test> - <test rtl="True"><string>ل<em>ہع</em>ف</string></test> - </testgroup> - </testgroup> - <testgroup label="Feh form sequences"> - <testgroup label="beh + feh"> - <test rtl="True"><string><em>بف</em></string></test> - <test rtl="True"><string>ل<em>بف</em></string></test> - <test rtl="True"><string><em>بف</em>ف</string></test> - <test rtl="True"><string>ل<em>بف</em>ف</string></test> - </testgroup> - <testgroup label="jeem + feh"> - <test rtl="True"><string><em>جف</em></string></test> - <test rtl="True"><string>ل<em>جف</em></string></test> - <test rtl="True"><string><em>جف</em>ف</string></test> - <test rtl="True"><string>ل<em>جف</em>ف</string></test> - </testgroup> - <testgroup label="seen + feh"> - <test rtl="True"><string><em>سف</em></string></test> - <test rtl="True"><string>ل<em>سف</em></string></test> - <test rtl="True"><string><em>سف</em>ف</string></test> - <test rtl="True"><string>ل<em>سف</em>ف</string></test> - </testgroup> - <testgroup label="sad + feh"> - <test rtl="True"><string><em>صف</em></string></test> - <test rtl="True"><string>ل<em>صف</em></string></test> - <test rtl="True"><string><em>صف</em>ف</string></test> - <test rtl="True"><string>ل<em>صف</em>ف</string></test> - </testgroup> - <testgroup label="tah + feh"> - <test rtl="True"><string><em>طف</em></string></test> - <test rtl="True"><string>ل<em>طف</em></string></test> - <test rtl="True"><string><em>طف</em>ف</string></test> - <test rtl="True"><string>ل<em>طف</em>ف</string></test> - </testgroup> - <testgroup label="ain + feh"> - <test rtl="True"><string><em>عف</em></string></test> - <test rtl="True"><string>ل<em>عف</em></string></test> - <test rtl="True"><string><em>عف</em>ف</string></test> - <test rtl="True"><string>ل<em>عف</em>ف</string></test> - </testgroup> - <testgroup label="feh + feh"> - <test rtl="True"><string><em>فف</em></string></test> - <test rtl="True"><string>ل<em>فف</em></string></test> - <test rtl="True"><string><em>فف</em>ف</string></test> - <test rtl="True"><string>ل<em>فف</em>ف</string></test> - </testgroup> - <testgroup label="lam + feh"> - <test rtl="True"><string><em>لف</em></string></test> - <test rtl="True"><string>ل<em>لف</em></string></test> - <test rtl="True"><string><em>لف</em>ف</string></test> - <test rtl="True"><string>ل<em>لف</em>ف</string></test> - </testgroup> - <testgroup label="meem + feh"> - <test rtl="True"><string><em>مف</em></string></test> - <test rtl="True"><string>ل<em>مف</em></string></test> - <test rtl="True"><string><em>مف</em>ف</string></test> - <test rtl="True"><string>ل<em>مف</em>ف</string></test> - </testgroup> - <testgroup label="kaf + feh"> - <test rtl="True"><string><em>کف</em></string></test> - <test rtl="True"><string>ل<em>کف</em></string></test> - <test rtl="True"><string><em>کف</em>ف</string></test> - <test rtl="True"><string>ل<em>کف</em>ف</string></test> - </testgroup> - <testgroup label="gaf + feh"> - <test rtl="True"><string><em>گف</em></string></test> - <test rtl="True"><string>ل<em>گف</em></string></test> - <test rtl="True"><string><em>گف</em>ف</string></test> - <test rtl="True"><string>ل<em>گف</em>ف</string></test> - </testgroup> - <testgroup label="hehDo + feh"> - <test rtl="True"><string><em>ھف</em></string></test> - <test rtl="True"><string>ل<em>ھف</em></string></test> - <test rtl="True"><string><em>ھف</em>ف</string></test> - <test rtl="True"><string>ل<em>ھف</em>ف</string></test> - </testgroup> - <testgroup label="hehGoal + feh"> - <test rtl="True"><string><em>ہف</em></string></test> - <test rtl="True"><string>ل<em>ہف</em></string></test> - <test rtl="True"><string><em>ہف</em>ف</string></test> - <test rtl="True"><string>ل<em>ہف</em>ف</string></test> - </testgroup> - </testgroup> - <testgroup label="Qaf form sequences"> - <testgroup label="beh + qaf"> - <test rtl="True"><string><em>بق</em></string></test> - <test rtl="True"><string>ل<em>بق</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>جق</em></string></test> - <test rtl="True"><string>ل<em>جق</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>سق</em></string></test> - <test rtl="True"><string>ل<em>سق</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>صق</em></string></test> - <test rtl="True"><string>ل<em>صق</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>طق</em></string></test> - <test rtl="True"><string>ل<em>طق</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>عق</em></string></test> - <test rtl="True"><string>ل<em>عق</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>فق</em></string></test> - <test rtl="True"><string>ل<em>فق</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>لق</em></string></test> - <test rtl="True"><string>ل<em>لق</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>مق</em></string></test> - <test rtl="True"><string>ل<em>مق</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>کق</em></string></test> - <test rtl="True"><string>ل<em>کق</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>گق</em></string></test> - <test rtl="True"><string>ل<em>گق</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>ھق</em></string></test> - <test rtl="True"><string>ل<em>ھق</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>ہق</em></string></test> - <test rtl="True"><string>ل<em>ہق</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>بل</em></string></test> - <test rtl="True"><string>ل<em>بل</em></string></test> - <test rtl="True"><string><em>بل</em>ف</string></test> - <test rtl="True"><string>ل<em>بل</em>ف</string></test> - </testgroup> - <testgroup label="jeem + lam"> - <test rtl="True"><string><em>جل</em></string></test> - <test rtl="True"><string>ل<em>جل</em></string></test> - <test rtl="True"><string><em>جل</em>ف</string></test> - <test rtl="True"><string>ل<em>جل</em>ف</string></test> - </testgroup> - <testgroup label="seen + lam"> - <test rtl="True"><string><em>سل</em></string></test> - <test rtl="True"><string>ل<em>سل</em></string></test> - <test rtl="True"><string><em>سل</em>ف</string></test> - <test rtl="True"><string>ل<em>سل</em>ف</string></test> - </testgroup> - <testgroup label="sad + lam"> - <test rtl="True"><string><em>صل</em></string></test> - <test rtl="True"><string>ل<em>صل</em></string></test> - <test rtl="True"><string><em>صل</em>ف</string></test> - <test rtl="True"><string>ل<em>صل</em>ف</string></test> - </testgroup> - <testgroup label="tah + lam"> - <test rtl="True"><string><em>طل</em></string></test> - <test rtl="True"><string>ل<em>طل</em></string></test> - <test rtl="True"><string><em>طل</em>ف</string></test> - <test rtl="True"><string>ل<em>طل</em>ف</string></test> - </testgroup> - <testgroup label="ain + lam"> - <test rtl="True"><string><em>عل</em></string></test> - <test rtl="True"><string>ل<em>عل</em></string></test> - <test rtl="True"><string><em>عل</em>ف</string></test> - <test rtl="True"><string>ل<em>عل</em>ف</string></test> - </testgroup> - <testgroup label="feh + lam"> - <test rtl="True"><string><em>فل</em></string></test> - <test rtl="True"><string>ل<em>فل</em></string></test> - <test rtl="True"><string><em>فل</em>ف</string></test> - <test rtl="True"><string>ل<em>فل</em>ف</string></test> - </testgroup> - <testgroup label="lam + lam"> - <test rtl="True"><string><em>لل</em></string></test> - <test rtl="True"><string>ل<em>لل</em></string></test> - <test rtl="True"><string><em>لل</em>ف</string></test> - <test rtl="True"><string>ل<em>لل</em>ف</string></test> - </testgroup> - <testgroup label="meem + lam"> - <test rtl="True"><string><em>مل</em></string></test> - <test rtl="True"><string>ل<em>مل</em></string></test> - <test rtl="True"><string><em>مل</em>ف</string></test> - <test rtl="True"><string>ل<em>مل</em>ف</string></test> - </testgroup> - <testgroup label="kaf + lam"> - <test rtl="True"><string><em>کل</em></string></test> - <test rtl="True"><string>ل<em>کل</em></string></test> - <test rtl="True"><string><em>کل</em>ف</string></test> - <test rtl="True"><string>ل<em>کل</em>ف</string></test> - </testgroup> - <testgroup label="gaf + lam"> - <test rtl="True"><string><em>گل</em></string></test> - <test rtl="True"><string>ل<em>گل</em></string></test> - <test rtl="True"><string><em>گل</em>ف</string></test> - <test rtl="True"><string>ل<em>گل</em>ف</string></test> - </testgroup> - <testgroup label="hehDo + lam"> - <test rtl="True"><string><em>ھل</em></string></test> - <test rtl="True"><string>ل<em>ھل</em></string></test> - <test rtl="True"><string><em>ھل</em>ف</string></test> - <test rtl="True"><string>ل<em>ھل</em>ف</string></test> - </testgroup> - <testgroup label="hehGoal + lam"> - <test rtl="True"><string><em>ہل</em></string></test> - <test rtl="True"><string>ل<em>ہل</em></string></test> - <test rtl="True"><string><em>ہل</em>ف</string></test> - <test rtl="True"><string>ل<em>ہل</em>ف</string></test> - </testgroup> - </testgroup> - <testgroup label="Meem form sequences"> - <testgroup label="beh + meem"> - <test rtl="True"><string><em>بم</em></string></test> - <test rtl="True"><string>ل<em>بم</em></string></test> - <test rtl="True"><string><em>بم</em>ف</string></test> - <test rtl="True"><string>ل<em>بم</em>ف</string></test> - </testgroup> - <testgroup label="jeem + meem"> - <test rtl="True"><string><em>جم</em></string></test> - <test rtl="True"><string>ل<em>جم</em></string></test> - <test rtl="True"><string><em>جم</em>ف</string></test> - <test rtl="True"><string>ل<em>جم</em>ف</string></test> - </testgroup> - <testgroup label="seen + meem"> - <test rtl="True"><string><em>سم</em></string></test> - <test rtl="True"><string>ل<em>سم</em></string></test> - <test rtl="True"><string><em>سم</em>ف</string></test> - <test rtl="True"><string>ل<em>سم</em>ف</string></test> - </testgroup> - <testgroup label="sad + meem"> - <test rtl="True"><string><em>صم</em></string></test> - <test rtl="True"><string>ل<em>صم</em></string></test> - <test rtl="True"><string><em>صم</em>ف</string></test> - <test rtl="True"><string>ل<em>صم</em>ف</string></test> - </testgroup> - <testgroup label="tah + meem"> - <test rtl="True"><string><em>طم</em></string></test> - <test rtl="True"><string>ل<em>طم</em></string></test> - <test rtl="True"><string><em>طم</em>ف</string></test> - <test rtl="True"><string>ل<em>طم</em>ف</string></test> - </testgroup> - <testgroup label="ain + meem"> - <test rtl="True"><string><em>عم</em></string></test> - <test rtl="True"><string>ل<em>عم</em></string></test> - <test rtl="True"><string><em>عم</em>ف</string></test> - <test rtl="True"><string>ل<em>عم</em>ف</string></test> - </testgroup> - <testgroup label="feh + meem"> - <test rtl="True"><string><em>فم</em></string></test> - <test rtl="True"><string>ل<em>فم</em></string></test> - <test rtl="True"><string><em>فم</em>ف</string></test> - <test rtl="True"><string>ل<em>فم</em>ف</string></test> - </testgroup> - <testgroup label="lam + meem"> - <test rtl="True"><string><em>لم</em></string></test> - <test rtl="True"><string>ل<em>لم</em></string></test> - <test rtl="True"><string><em>لم</em>ف</string></test> - <test rtl="True"><string>ل<em>لم</em>ف</string></test> - </testgroup> - <testgroup label="meem + meem"> - <test rtl="True"><string><em>مم</em></string></test> - <test rtl="True"><string>ل<em>مم</em></string></test> - <test rtl="True"><string><em>مم</em>ف</string></test> - <test rtl="True"><string>ل<em>مم</em>ف</string></test> - </testgroup> - <testgroup label="kaf + meem"> - <test rtl="True"><string><em>کم</em></string></test> - <test rtl="True"><string>ل<em>کم</em></string></test> - <test rtl="True"><string><em>کم</em>ف</string></test> - <test rtl="True"><string>ل<em>کم</em>ف</string></test> - </testgroup> - <testgroup label="gaf + meem"> - <test rtl="True"><string><em>گم</em></string></test> - <test rtl="True"><string>ل<em>گم</em></string></test> - <test rtl="True"><string><em>گم</em>ف</string></test> - <test rtl="True"><string>ل<em>گم</em>ف</string></test> - </testgroup> - <testgroup label="hehDo + meem"> - <test rtl="True"><string><em>ھم</em></string></test> - <test rtl="True"><string>ل<em>ھم</em></string></test> - <test rtl="True"><string><em>ھم</em>ف</string></test> - <test rtl="True"><string>ل<em>ھم</em>ف</string></test> - </testgroup> - <testgroup label="hehGoal + meem"> - <test rtl="True"><string><em>ہم</em></string></test> - <test rtl="True"><string>ل<em>ہم</em></string></test> - <test rtl="True"><string><em>ہم</em>ف</string></test> - <test rtl="True"><string>ل<em>ہم</em>ف</string></test> - </testgroup> - </testgroup> - <testgroup label="Alternate meem sequences"> - <testgroup label="beh + meem-alt + kaf"> - <test rtl="True"><string><em>بمک</em></string></test> - <test rtl="True"><string>ل<em>بمک</em></string></test> - <test rtl="True"><string><em>بمک</em>ف</string></test> - <test rtl="True"><string>ل<em>بمک</em>ف</string></test> - </testgroup> - <testgroup label="beh + meem-alt + gaf"> - <test rtl="True"><string><em>بمگ</em></string></test> - <test rtl="True"><string>ل<em>بمگ</em></string></test> - <test rtl="True"><string><em>بمگ</em>ف</string></test> - <test rtl="True"><string>ل<em>بمگ</em>ف</string></test> - </testgroup> - <testgroup label="beh + meem-alt + lam"> - <test rtl="True"><string><em>بمل</em></string></test> - <test rtl="True"><string>ل<em>بمل</em></string></test> - <test rtl="True"><string><em>بمل</em>ف</string></test> - <test rtl="True"><string>ل<em>بمل</em>ف</string></test> - </testgroup> - <testgroup label="beh + meem-alt + alef"> - <test rtl="True"><string><em>بما</em></string></test> - <test rtl="True"><string>ل<em>بما</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>بمد</em></string></test> - <test rtl="True"><string>ل<em>بمد</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>جمک</em></string></test> - <test rtl="True"><string>ل<em>جمک</em></string></test> - <test rtl="True"><string><em>جمک</em>ف</string></test> - <test rtl="True"><string>ل<em>جمک</em>ف</string></test> - </testgroup> - <testgroup label="jeem + meem-alt + gaf"> - <test rtl="True"><string><em>جمگ</em></string></test> - <test rtl="True"><string>ل<em>جمگ</em></string></test> - <test rtl="True"><string><em>جمگ</em>ف</string></test> - <test rtl="True"><string>ل<em>جمگ</em>ف</string></test> - </testgroup> - <testgroup label="jeem + meem-alt + lam"> - <test rtl="True"><string><em>جمل</em></string></test> - <test rtl="True"><string>ل<em>جمل</em></string></test> - <test rtl="True"><string><em>جمل</em>ف</string></test> - <test rtl="True"><string>ل<em>جمل</em>ف</string></test> - </testgroup> - <testgroup label="jeem + meem-alt + alef"> - <test rtl="True"><string><em>جما</em></string></test> - <test rtl="True"><string>ل<em>جما</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>جمد</em></string></test> - <test rtl="True"><string>ل<em>جمد</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>سمک</em></string></test> - <test rtl="True"><string>ل<em>سمک</em></string></test> - <test rtl="True"><string><em>سمک</em>ف</string></test> - <test rtl="True"><string>ل<em>سمک</em>ف</string></test> - </testgroup> - <testgroup label="seen + meem-alt + gaf"> - <test rtl="True"><string><em>سمگ</em></string></test> - <test rtl="True"><string>ل<em>سمگ</em></string></test> - <test rtl="True"><string><em>سمگ</em>ف</string></test> - <test rtl="True"><string>ل<em>سمگ</em>ف</string></test> - </testgroup> - <testgroup label="seen + meem-alt + lam"> - <test rtl="True"><string><em>سمل</em></string></test> - <test rtl="True"><string>ل<em>سمل</em></string></test> - <test rtl="True"><string><em>سمل</em>ف</string></test> - <test rtl="True"><string>ل<em>سمل</em>ف</string></test> - </testgroup> - <testgroup label="seen + meem-alt + alef"> - <test rtl="True"><string><em>سما</em></string></test> - <test rtl="True"><string>ل<em>سما</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>سمد</em></string></test> - <test rtl="True"><string>ل<em>سمد</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>صمک</em></string></test> - <test rtl="True"><string>ل<em>صمک</em></string></test> - <test rtl="True"><string><em>صمک</em>ف</string></test> - <test rtl="True"><string>ل<em>صمک</em>ف</string></test> - </testgroup> - <testgroup label="sad + meem-alt + gaf"> - <test rtl="True"><string><em>صمگ</em></string></test> - <test rtl="True"><string>ل<em>صمگ</em></string></test> - <test rtl="True"><string><em>صمگ</em>ف</string></test> - <test rtl="True"><string>ل<em>صمگ</em>ف</string></test> - </testgroup> - <testgroup label="sad + meem-alt + lam"> - <test rtl="True"><string><em>صمل</em></string></test> - <test rtl="True"><string>ل<em>صمل</em></string></test> - <test rtl="True"><string><em>صمل</em>ف</string></test> - <test rtl="True"><string>ل<em>صمل</em>ف</string></test> - </testgroup> - <testgroup label="sad + meem-alt + alef"> - <test rtl="True"><string><em>صما</em></string></test> - <test rtl="True"><string>ل<em>صما</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>صمد</em></string></test> - <test rtl="True"><string>ل<em>صمد</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>طمک</em></string></test> - <test rtl="True"><string>ل<em>طمک</em></string></test> - <test rtl="True"><string><em>طمک</em>ف</string></test> - <test rtl="True"><string>ل<em>طمک</em>ف</string></test> - </testgroup> - <testgroup label="tah + meem-alt + gaf"> - <test rtl="True"><string><em>طمگ</em></string></test> - <test rtl="True"><string>ل<em>طمگ</em></string></test> - <test rtl="True"><string><em>طمگ</em>ف</string></test> - <test rtl="True"><string>ل<em>طمگ</em>ف</string></test> - </testgroup> - <testgroup label="tah + meem-alt + lam"> - <test rtl="True"><string><em>طمل</em></string></test> - <test rtl="True"><string>ل<em>طمل</em></string></test> - <test rtl="True"><string><em>طمل</em>ف</string></test> - <test rtl="True"><string>ل<em>طمل</em>ف</string></test> - </testgroup> - <testgroup label="tah + meem-alt + alef"> - <test rtl="True"><string><em>طما</em></string></test> - <test rtl="True"><string>ل<em>طما</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>طمد</em></string></test> - <test rtl="True"><string>ل<em>طمد</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>عمک</em></string></test> - <test rtl="True"><string>ل<em>عمک</em></string></test> - <test rtl="True"><string><em>عمک</em>ف</string></test> - <test rtl="True"><string>ل<em>عمک</em>ف</string></test> - </testgroup> - <testgroup label="ain + meem-alt + gaf"> - <test rtl="True"><string><em>عمگ</em></string></test> - <test rtl="True"><string>ل<em>عمگ</em></string></test> - <test rtl="True"><string><em>عمگ</em>ف</string></test> - <test rtl="True"><string>ل<em>عمگ</em>ف</string></test> - </testgroup> - <testgroup label="ain + meem-alt + lam"> - <test rtl="True"><string><em>عمل</em></string></test> - <test rtl="True"><string>ل<em>عمل</em></string></test> - <test rtl="True"><string><em>عمل</em>ف</string></test> - <test rtl="True"><string>ل<em>عمل</em>ف</string></test> - </testgroup> - <testgroup label="ain + meem-alt + alef"> - <test rtl="True"><string><em>عما</em></string></test> - <test rtl="True"><string>ل<em>عما</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>عمد</em></string></test> - <test rtl="True"><string>ل<em>عمد</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>فمک</em></string></test> - <test rtl="True"><string>ل<em>فمک</em></string></test> - <test rtl="True"><string><em>فمک</em>ف</string></test> - <test rtl="True"><string>ل<em>فمک</em>ف</string></test> - </testgroup> - <testgroup label="feh + meem-alt + gaf"> - <test rtl="True"><string><em>فمگ</em></string></test> - <test rtl="True"><string>ل<em>فمگ</em></string></test> - <test rtl="True"><string><em>فمگ</em>ف</string></test> - <test rtl="True"><string>ل<em>فمگ</em>ف</string></test> - </testgroup> - <testgroup label="feh + meem-alt + lam"> - <test rtl="True"><string><em>فمل</em></string></test> - <test rtl="True"><string>ل<em>فمل</em></string></test> - <test rtl="True"><string><em>فمل</em>ف</string></test> - <test rtl="True"><string>ل<em>فمل</em>ف</string></test> - </testgroup> - <testgroup label="feh + meem-alt + alef"> - <test rtl="True"><string><em>فما</em></string></test> - <test rtl="True"><string>ل<em>فما</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>فمد</em></string></test> - <test rtl="True"><string>ل<em>فمد</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>ممک</em></string></test> - <test rtl="True"><string>ل<em>ممک</em></string></test> - <test rtl="True"><string><em>ممک</em>ف</string></test> - <test rtl="True"><string>ل<em>ممک</em>ف</string></test> - </testgroup> - <testgroup label="meem + meem-alt + gaf"> - <test rtl="True"><string><em>ممگ</em></string></test> - <test rtl="True"><string>ل<em>ممگ</em></string></test> - <test rtl="True"><string><em>ممگ</em>ف</string></test> - <test rtl="True"><string>ل<em>ممگ</em>ف</string></test> - </testgroup> - <testgroup label="meem + meem-alt + lam"> - <test rtl="True"><string><em>ممل</em></string></test> - <test rtl="True"><string>ل<em>ممل</em></string></test> - <test rtl="True"><string><em>ممل</em>ف</string></test> - <test rtl="True"><string>ل<em>ممل</em>ف</string></test> - </testgroup> - <testgroup label="meem + meem-alt + alef"> - <test rtl="True"><string><em>مما</em></string></test> - <test rtl="True"><string>ل<em>مما</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>ممد</em></string></test> - <test rtl="True"><string>ل<em>ممد</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>ھمک</em></string></test> - <test rtl="True"><string>ل<em>ھمک</em></string></test> - <test rtl="True"><string><em>ھمک</em>ف</string></test> - <test rtl="True"><string>ل<em>ھمک</em>ف</string></test> - </testgroup> - <testgroup label="hehDo + meem-alt + gaf"> - <test rtl="True"><string><em>ھمگ</em></string></test> - <test rtl="True"><string>ل<em>ھمگ</em></string></test> - <test rtl="True"><string><em>ھمگ</em>ف</string></test> - <test rtl="True"><string>ل<em>ھمگ</em>ف</string></test> - </testgroup> - <testgroup label="hehDo + meem-alt + lam"> - <test rtl="True"><string><em>ھمل</em></string></test> - <test rtl="True"><string>ل<em>ھمل</em></string></test> - <test rtl="True"><string><em>ھمل</em>ف</string></test> - <test rtl="True"><string>ل<em>ھمل</em>ف</string></test> - </testgroup> - <testgroup label="hehDo + meem-alt + alef"> - <test rtl="True"><string><em>ھما</em></string></test> - <test rtl="True"><string>ل<em>ھما</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>ھمد</em></string></test> - <test rtl="True"><string>ل<em>ھمد</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>ہمک</em></string></test> - <test rtl="True"><string>ل<em>ہمک</em></string></test> - <test rtl="True"><string><em>ہمک</em>ف</string></test> - <test rtl="True"><string>ل<em>ہمک</em>ف</string></test> - </testgroup> - <testgroup label="hehGoal + meem-alt + gaf"> - <test rtl="True"><string><em>ہمگ</em></string></test> - <test rtl="True"><string>ل<em>ہمگ</em></string></test> - <test rtl="True"><string><em>ہمگ</em>ف</string></test> - <test rtl="True"><string>ل<em>ہمگ</em>ف</string></test> - </testgroup> - <testgroup label="hehGoal + meem-alt + lam"> - <test rtl="True"><string><em>ہمل</em></string></test> - <test rtl="True"><string>ل<em>ہمل</em></string></test> - <test rtl="True"><string><em>ہمل</em>ف</string></test> - <test rtl="True"><string>ل<em>ہمل</em>ف</string></test> - </testgroup> - <testgroup label="hehGoal + meem-alt + alef"> - <test rtl="True"><string><em>ہما</em></string></test> - <test rtl="True"><string>ل<em>ہما</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>ہمد</em></string></test> - <test rtl="True"><string>ل<em>ہمد</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>بن</em></string></test> - <test rtl="True"><string>ل<em>بن</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>جن</em></string></test> - <test rtl="True"><string>ل<em>جن</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>سن</em></string></test> - <test rtl="True"><string>ل<em>سن</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>صن</em></string></test> - <test rtl="True"><string>ل<em>صن</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>طن</em></string></test> - <test rtl="True"><string>ل<em>طن</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>عن</em></string></test> - <test rtl="True"><string>ل<em>عن</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>فن</em></string></test> - <test rtl="True"><string>ل<em>فن</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>لن</em></string></test> - <test rtl="True"><string>ل<em>لن</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>من</em></string></test> - <test rtl="True"><string>ل<em>من</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>کن</em></string></test> - <test rtl="True"><string>ل<em>کن</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>گن</em></string></test> - <test rtl="True"><string>ل<em>گن</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>ھن</em></string></test> - <test rtl="True"><string>ل<em>ھن</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>ہن</em></string></test> - <test rtl="True"><string>ل<em>ہن</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>بو</em></string></test> - <test rtl="True"><string>ل<em>بو</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>جو</em></string></test> - <test rtl="True"><string>ل<em>جو</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>سو</em></string></test> - <test rtl="True"><string>ل<em>سو</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>صو</em></string></test> - <test rtl="True"><string>ل<em>صو</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>طو</em></string></test> - <test rtl="True"><string>ل<em>طو</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>عو</em></string></test> - <test rtl="True"><string>ل<em>عو</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>فو</em></string></test> - <test rtl="True"><string>ل<em>فو</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>لو</em></string></test> - <test rtl="True"><string>ل<em>لو</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>مو</em></string></test> - <test rtl="True"><string>ل<em>مو</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>کو</em></string></test> - <test rtl="True"><string>ل<em>کو</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>گو</em></string></test> - <test rtl="True"><string>ل<em>گو</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>ھو</em></string></test> - <test rtl="True"><string>ل<em>ھو</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>ہو</em></string></test> - <test rtl="True"><string>ل<em>ہو</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>بک</em></string></test> - <test rtl="True"><string>ل<em>بک</em></string></test> - <test rtl="True"><string><em>بک</em>ف</string></test> - <test rtl="True"><string>ل<em>بک</em>ف</string></test> - </testgroup> - <testgroup label="jeem + kaf"> - <test rtl="True"><string><em>جک</em></string></test> - <test rtl="True"><string>ل<em>جک</em></string></test> - <test rtl="True"><string><em>جک</em>ف</string></test> - <test rtl="True"><string>ل<em>جک</em>ف</string></test> - </testgroup> - <testgroup label="seen + kaf"> - <test rtl="True"><string><em>سک</em></string></test> - <test rtl="True"><string>ل<em>سک</em></string></test> - <test rtl="True"><string><em>سک</em>ف</string></test> - <test rtl="True"><string>ل<em>سک</em>ف</string></test> - </testgroup> - <testgroup label="sad + kaf"> - <test rtl="True"><string><em>صک</em></string></test> - <test rtl="True"><string>ل<em>صک</em></string></test> - <test rtl="True"><string><em>صک</em>ف</string></test> - <test rtl="True"><string>ل<em>صک</em>ف</string></test> - </testgroup> - <testgroup label="tah + kaf"> - <test rtl="True"><string><em>طک</em></string></test> - <test rtl="True"><string>ل<em>طک</em></string></test> - <test rtl="True"><string><em>طک</em>ف</string></test> - <test rtl="True"><string>ل<em>طک</em>ف</string></test> - </testgroup> - <testgroup label="ain + kaf"> - <test rtl="True"><string><em>عک</em></string></test> - <test rtl="True"><string>ل<em>عک</em></string></test> - <test rtl="True"><string><em>عک</em>ف</string></test> - <test rtl="True"><string>ل<em>عک</em>ف</string></test> - </testgroup> - <testgroup label="feh + kaf"> - <test rtl="True"><string><em>فک</em></string></test> - <test rtl="True"><string>ل<em>فک</em></string></test> - <test rtl="True"><string><em>فک</em>ف</string></test> - <test rtl="True"><string>ل<em>فک</em>ف</string></test> - </testgroup> - <testgroup label="lam + kaf"> - <test rtl="True"><string><em>لک</em></string></test> - <test rtl="True"><string>ل<em>لک</em></string></test> - <test rtl="True"><string><em>لک</em>ف</string></test> - <test rtl="True"><string>ل<em>لک</em>ف</string></test> - </testgroup> - <testgroup label="meem + kaf"> - <test rtl="True"><string><em>مک</em></string></test> - <test rtl="True"><string>ل<em>مک</em></string></test> - <test rtl="True"><string><em>مک</em>ف</string></test> - <test rtl="True"><string>ل<em>مک</em>ف</string></test> - </testgroup> - <testgroup label="kaf + kaf"> - <test rtl="True"><string><em>کک</em></string></test> - <test rtl="True"><string>ل<em>کک</em></string></test> - <test rtl="True"><string><em>کک</em>ف</string></test> - <test rtl="True"><string>ل<em>کک</em>ف</string></test> - </testgroup> - <testgroup label="gaf + kaf"> - <test rtl="True"><string><em>گک</em></string></test> - <test rtl="True"><string>ل<em>گک</em></string></test> - <test rtl="True"><string><em>گک</em>ف</string></test> - <test rtl="True"><string>ل<em>گک</em>ف</string></test> - </testgroup> - <testgroup label="hehDo + kaf"> - <test rtl="True"><string><em>ھک</em></string></test> - <test rtl="True"><string>ل<em>ھک</em></string></test> - <test rtl="True"><string><em>ھک</em>ف</string></test> - <test rtl="True"><string>ل<em>ھک</em>ف</string></test> - </testgroup> - <testgroup label="hehGoal + kaf"> - <test rtl="True"><string><em>ہک</em></string></test> - <test rtl="True"><string>ل<em>ہک</em></string></test> - <test rtl="True"><string><em>ہک</em>ف</string></test> - <test rtl="True"><string>ل<em>ہک</em>ف</string></test> - </testgroup> - </testgroup> - <testgroup label="Gaf form sequences"> - <testgroup label="beh + gaf"> - <test rtl="True"><string><em>بگ</em></string></test> - <test rtl="True"><string>ل<em>بگ</em></string></test> - <test rtl="True"><string><em>بگ</em>ف</string></test> - <test rtl="True"><string>ل<em>بگ</em>ف</string></test> - </testgroup> - <testgroup label="jeem + gaf"> - <test rtl="True"><string><em>جگ</em></string></test> - <test rtl="True"><string>ل<em>جگ</em></string></test> - <test rtl="True"><string><em>جگ</em>ف</string></test> - <test rtl="True"><string>ل<em>جگ</em>ف</string></test> - </testgroup> - <testgroup label="seen + gaf"> - <test rtl="True"><string><em>سگ</em></string></test> - <test rtl="True"><string>ل<em>سگ</em></string></test> - <test rtl="True"><string><em>سگ</em>ف</string></test> - <test rtl="True"><string>ل<em>سگ</em>ف</string></test> - </testgroup> - <testgroup label="sad + gaf"> - <test rtl="True"><string><em>صگ</em></string></test> - <test rtl="True"><string>ل<em>صگ</em></string></test> - <test rtl="True"><string><em>صگ</em>ف</string></test> - <test rtl="True"><string>ل<em>صگ</em>ف</string></test> - </testgroup> - <testgroup label="tah + gaf"> - <test rtl="True"><string><em>طگ</em></string></test> - <test rtl="True"><string>ل<em>طگ</em></string></test> - <test rtl="True"><string><em>طگ</em>ف</string></test> - <test rtl="True"><string>ل<em>طگ</em>ف</string></test> - </testgroup> - <testgroup label="ain + gaf"> - <test rtl="True"><string><em>عگ</em></string></test> - <test rtl="True"><string>ل<em>عگ</em></string></test> - <test rtl="True"><string><em>عگ</em>ف</string></test> - <test rtl="True"><string>ل<em>عگ</em>ف</string></test> - </testgroup> - <testgroup label="feh + gaf"> - <test rtl="True"><string><em>فگ</em></string></test> - <test rtl="True"><string>ل<em>فگ</em></string></test> - <test rtl="True"><string><em>فگ</em>ف</string></test> - <test rtl="True"><string>ل<em>فگ</em>ف</string></test> - </testgroup> - <testgroup label="lam + gaf"> - <test rtl="True"><string><em>لگ</em></string></test> - <test rtl="True"><string>ل<em>لگ</em></string></test> - <test rtl="True"><string><em>لگ</em>ف</string></test> - <test rtl="True"><string>ل<em>لگ</em>ف</string></test> - </testgroup> - <testgroup label="meem + gaf"> - <test rtl="True"><string><em>مگ</em></string></test> - <test rtl="True"><string>ل<em>مگ</em></string></test> - <test rtl="True"><string><em>مگ</em>ف</string></test> - <test rtl="True"><string>ل<em>مگ</em>ف</string></test> - </testgroup> - <testgroup label="kaf + gaf"> - <test rtl="True"><string><em>کگ</em></string></test> - <test rtl="True"><string>ل<em>کگ</em></string></test> - <test rtl="True"><string><em>کگ</em>ف</string></test> - <test rtl="True"><string>ل<em>کگ</em>ف</string></test> - </testgroup> - <testgroup label="gaf + gaf"> - <test rtl="True"><string><em>گگ</em></string></test> - <test rtl="True"><string>ل<em>گگ</em></string></test> - <test rtl="True"><string><em>گگ</em>ف</string></test> - <test rtl="True"><string>ل<em>گگ</em>ف</string></test> - </testgroup> - <testgroup label="hehDo + gaf"> - <test rtl="True"><string><em>ھگ</em></string></test> - <test rtl="True"><string>ل<em>ھگ</em></string></test> - <test rtl="True"><string><em>ھگ</em>ف</string></test> - <test rtl="True"><string>ل<em>ھگ</em>ف</string></test> - </testgroup> - <testgroup label="hehGoal + gaf"> - <test rtl="True"><string><em>ہگ</em></string></test> - <test rtl="True"><string>ل<em>ہگ</em></string></test> - <test rtl="True"><string><em>ہگ</em>ف</string></test> - <test rtl="True"><string>ل<em>ہگ</em>ف</string></test> - </testgroup> - </testgroup> - <testgroup label="Heh-Doachashmee form sequences"> - <testgroup label="beh + hehDo"> - <test rtl="True"><string><em>بھ</em></string></test> - <test rtl="True"><string>ل<em>بھ</em></string></test> - <test rtl="True"><string><em>بھ</em>ف</string></test> - <test rtl="True"><string>ل<em>بھ</em>ف</string></test> - </testgroup> - <testgroup label="jeem + hehDo"> - <test rtl="True"><string><em>جھ</em></string></test> - <test rtl="True"><string>ل<em>جھ</em></string></test> - <test rtl="True"><string><em>جھ</em>ف</string></test> - <test rtl="True"><string>ل<em>جھ</em>ف</string></test> - </testgroup> - <testgroup label="seen + hehDo"> - <test rtl="True"><string><em>سھ</em></string></test> - <test rtl="True"><string>ل<em>سھ</em></string></test> - <test rtl="True"><string><em>سھ</em>ف</string></test> - <test rtl="True"><string>ل<em>سھ</em>ف</string></test> - </testgroup> - <testgroup label="sad + hehDo"> - <test rtl="True"><string><em>صھ</em></string></test> - <test rtl="True"><string>ل<em>صھ</em></string></test> - <test rtl="True"><string><em>صھ</em>ف</string></test> - <test rtl="True"><string>ل<em>صھ</em>ف</string></test> - </testgroup> - <testgroup label="tah + hehDo"> - <test rtl="True"><string><em>طھ</em></string></test> - <test rtl="True"><string>ل<em>طھ</em></string></test> - <test rtl="True"><string><em>طھ</em>ف</string></test> - <test rtl="True"><string>ل<em>طھ</em>ف</string></test> - </testgroup> - <testgroup label="ain + hehDo"> - <test rtl="True"><string><em>عھ</em></string></test> - <test rtl="True"><string>ل<em>عھ</em></string></test> - <test rtl="True"><string><em>عھ</em>ف</string></test> - <test rtl="True"><string>ل<em>عھ</em>ف</string></test> - </testgroup> - <testgroup label="feh + hehDo"> - <test rtl="True"><string><em>فھ</em></string></test> - <test rtl="True"><string>ل<em>فھ</em></string></test> - <test rtl="True"><string><em>فھ</em>ف</string></test> - <test rtl="True"><string>ل<em>فھ</em>ف</string></test> - </testgroup> - <testgroup label="lam + hehDo"> - <test rtl="True"><string><em>لھ</em></string></test> - <test rtl="True"><string>ل<em>لھ</em></string></test> - <test rtl="True"><string><em>لھ</em>ف</string></test> - <test rtl="True"><string>ل<em>لھ</em>ف</string></test> - </testgroup> - <testgroup label="meem + hehDo"> - <test rtl="True"><string><em>مھ</em></string></test> - <test rtl="True"><string>ل<em>مھ</em></string></test> - <test rtl="True"><string><em>مھ</em>ف</string></test> - <test rtl="True"><string>ل<em>مھ</em>ف</string></test> - </testgroup> - <testgroup label="kaf + hehDo"> - <test rtl="True"><string><em>کھ</em></string></test> - <test rtl="True"><string>ل<em>کھ</em></string></test> - <test rtl="True"><string><em>کھ</em>ف</string></test> - <test rtl="True"><string>ل<em>کھ</em>ف</string></test> - </testgroup> - <testgroup label="gaf + hehDo"> - <test rtl="True"><string><em>گھ</em></string></test> - <test rtl="True"><string>ل<em>گھ</em></string></test> - <test rtl="True"><string><em>گھ</em>ف</string></test> - <test rtl="True"><string>ل<em>گھ</em>ف</string></test> - </testgroup> - <testgroup label="hehDo + hehDo"> - <test rtl="True"><string><em>ھھ</em></string></test> - <test rtl="True"><string>ل<em>ھھ</em></string></test> - <test rtl="True"><string><em>ھھ</em>ف</string></test> - <test rtl="True"><string>ل<em>ھھ</em>ف</string></test> - </testgroup> - <testgroup label="hehGoal + hehDo"> - <test rtl="True"><string><em>ہھ</em></string></test> - <test rtl="True"><string>ل<em>ہھ</em></string></test> - <test rtl="True"><string><em>ہھ</em>ف</string></test> - <test rtl="True"><string>ل<em>ہھ</em>ف</string></test> - </testgroup> - </testgroup> - <testgroup label="Heh-Goal form sequences"> - <testgroup label="beh + hehGoal"> - <test rtl="True"><string><em>بہ</em></string></test> - <test rtl="True"><string>ل<em>بہ</em></string></test> - <test rtl="True"><string><em>بہ</em>ف</string></test> - <test rtl="True"><string>ل<em>بہ</em>ف</string></test> - </testgroup> - <testgroup label="jeem + hehGoal"> - <test rtl="True"><string><em>جہ</em></string></test> - <test rtl="True"><string>ل<em>جہ</em></string></test> - <test rtl="True"><string><em>جہ</em>ف</string></test> - <test rtl="True"><string>ل<em>جہ</em>ف</string></test> - </testgroup> - <testgroup label="seen + hehGoal"> - <test rtl="True"><string><em>سہ</em></string></test> - <test rtl="True"><string>ل<em>سہ</em></string></test> - <test rtl="True"><string><em>سہ</em>ف</string></test> - <test rtl="True"><string>ل<em>سہ</em>ف</string></test> - </testgroup> - <testgroup label="sad + hehGoal"> - <test rtl="True"><string><em>صہ</em></string></test> - <test rtl="True"><string>ل<em>صہ</em></string></test> - <test rtl="True"><string><em>صہ</em>ف</string></test> - <test rtl="True"><string>ل<em>صہ</em>ف</string></test> - </testgroup> - <testgroup label="tah + hehGoal"> - <test rtl="True"><string><em>طہ</em></string></test> - <test rtl="True"><string>ل<em>طہ</em></string></test> - <test rtl="True"><string><em>طہ</em>ف</string></test> - <test rtl="True"><string>ل<em>طہ</em>ف</string></test> - </testgroup> - <testgroup label="ain + hehGoal"> - <test rtl="True"><string><em>عہ</em></string></test> - <test rtl="True"><string>ل<em>عہ</em></string></test> - <test rtl="True"><string><em>عہ</em>ف</string></test> - <test rtl="True"><string>ل<em>عہ</em>ف</string></test> - </testgroup> - <testgroup label="feh + hehGoal"> - <test rtl="True"><string><em>فہ</em></string></test> - <test rtl="True"><string>ل<em>فہ</em></string></test> - <test rtl="True"><string><em>فہ</em>ف</string></test> - <test rtl="True"><string>ل<em>فہ</em>ف</string></test> - </testgroup> - <testgroup label="lam + hehGoal"> - <test rtl="True"><string><em>لہ</em></string></test> - <test rtl="True"><string>ل<em>لہ</em></string></test> - <test rtl="True"><string><em>لہ</em>ف</string></test> - <test rtl="True"><string>ل<em>لہ</em>ف</string></test> - </testgroup> - <testgroup label="meem + hehGoal"> - <test rtl="True"><string><em>مہ</em></string></test> - <test rtl="True"><string>ل<em>مہ</em></string></test> - <test rtl="True"><string><em>مہ</em>ف</string></test> - <test rtl="True"><string>ل<em>مہ</em>ف</string></test> - </testgroup> - <testgroup label="kaf + hehGoal"> - <test rtl="True"><string><em>کہ</em></string></test> - <test rtl="True"><string>ل<em>کہ</em></string></test> - <test rtl="True"><string><em>کہ</em>ف</string></test> - <test rtl="True"><string>ل<em>کہ</em>ف</string></test> - </testgroup> - <testgroup label="gaf + hehGoal"> - <test rtl="True"><string><em>گہ</em></string></test> - <test rtl="True"><string>ل<em>گہ</em></string></test> - <test rtl="True"><string><em>گہ</em>ف</string></test> - <test rtl="True"><string>ل<em>گہ</em>ف</string></test> - </testgroup> - <testgroup label="hehDo + hehGoal"> - <test rtl="True"><string><em>ھہ</em></string></test> - <test rtl="True"><string>ل<em>ھہ</em></string></test> - <test rtl="True"><string><em>ھہ</em>ف</string></test> - <test rtl="True"><string>ل<em>ھہ</em>ف</string></test> - </testgroup> - <testgroup label="hehGoal + hehGoal"> - <test rtl="True"><string><em>ہہ</em></string></test> - <test rtl="True"><string>ل<em>ہہ</em></string></test> - <test rtl="True"><string><em>ہہ</em>ف</string></test> - <test rtl="True"><string>ل<em>ہہ</em>ف</string></test> - </testgroup> - </testgroup> - <testgroup label="Teh-marbuta form sequences"> - <testgroup label="beh + tehMarbuta"> - <test rtl="True"><string><em>بة</em></string></test> - <test rtl="True"><string>ل<em>بة</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>جة</em></string></test> - <test rtl="True"><string>ل<em>جة</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>سة</em></string></test> - <test rtl="True"><string>ل<em>سة</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>صة</em></string></test> - <test rtl="True"><string>ل<em>صة</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>طة</em></string></test> - <test rtl="True"><string>ل<em>طة</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>عة</em></string></test> - <test rtl="True"><string>ل<em>عة</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>فة</em></string></test> - <test rtl="True"><string>ل<em>فة</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>لة</em></string></test> - <test rtl="True"><string>ل<em>لة</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>مة</em></string></test> - <test rtl="True"><string>ل<em>مة</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>کة</em></string></test> - <test rtl="True"><string>ل<em>کة</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>گة</em></string></test> - <test rtl="True"><string>ل<em>گة</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>ھة</em></string></test> - <test rtl="True"><string>ل<em>ھة</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>ہة</em></string></test> - <test rtl="True"><string>ل<em>ہة</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>بی</em></string></test> - <test rtl="True"><string>ل<em>بی</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>جی</em></string></test> - <test rtl="True"><string>ل<em>جی</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>سی</em></string></test> - <test rtl="True"><string>ل<em>سی</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>صی</em></string></test> - <test rtl="True"><string>ل<em>صی</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>طی</em></string></test> - <test rtl="True"><string>ل<em>طی</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>عی</em></string></test> - <test rtl="True"><string>ل<em>عی</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>فی</em></string></test> - <test rtl="True"><string>ل<em>فی</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>لی</em></string></test> - <test rtl="True"><string>ل<em>لی</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>می</em></string></test> - <test rtl="True"><string>ل<em>می</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>کی</em></string></test> - <test rtl="True"><string>ل<em>کی</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>گی</em></string></test> - <test rtl="True"><string>ل<em>گی</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>ھی</em></string></test> - <test rtl="True"><string>ل<em>ھی</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>ہی</em></string></test> - <test rtl="True"><string>ل<em>ہی</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>بے</em></string></test> - <test rtl="True"><string>ل<em>بے</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>جے</em></string></test> - <test rtl="True"><string>ل<em>جے</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>سے</em></string></test> - <test rtl="True"><string>ل<em>سے</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>صے</em></string></test> - <test rtl="True"><string>ل<em>صے</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>طے</em></string></test> - <test rtl="True"><string>ل<em>طے</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>عے</em></string></test> - <test rtl="True"><string>ل<em>عے</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>فے</em></string></test> - <test rtl="True"><string>ل<em>فے</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>لے</em></string></test> - <test rtl="True"><string>ل<em>لے</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>مے</em></string></test> - <test rtl="True"><string>ل<em>مے</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>کے</em></string></test> - <test rtl="True"><string>ل<em>کے</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>گے</em></string></test> - <test rtl="True"><string>ل<em>گے</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>ھے</em></string></test> - <test rtl="True"><string>ل<em>ھے</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>ہے</em></string></test> - <test rtl="True"><string>ل<em>ہے</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>ببب</em></string></test> - <test rtl="True"><string>ل<em>ببب</em></string></test> - <test rtl="True"><string><em>ببب</em>ف</string></test> - <test rtl="True"><string>ل<em>ببب</em>ف</string></test> - </testgroup> - <testgroup label="beh + beh + beh + beh"> - <test rtl="True"><string><em>بببب</em></string></test> - <test rtl="True"><string>ل<em>بببب</em></string></test> - <test rtl="True"><string><em>بببب</em>ف</string></test> - <test rtl="True"><string>ل<em>بببب</em>ف</string></test> - </testgroup> - <testgroup label="jeem + beh + beh"> - <test rtl="True"><string><em>جبب</em></string></test> - <test rtl="True"><string>ل<em>جبب</em></string></test> - <test rtl="True"><string><em>جبب</em>ف</string></test> - <test rtl="True"><string>ل<em>جبب</em>ف</string></test> - </testgroup> - <testgroup label="jeem + beh + beh + beh"> - <test rtl="True"><string><em>جببب</em></string></test> - <test rtl="True"><string>ل<em>جببب</em></string></test> - <test rtl="True"><string><em>جببب</em>ف</string></test> - <test rtl="True"><string>ل<em>جببب</em>ف</string></test> - </testgroup> - <testgroup label="seen + beh + beh"> - <test rtl="True"><string><em>سبب</em></string></test> - <test rtl="True"><string>ل<em>سبب</em></string></test> - <test rtl="True"><string><em>سبب</em>ف</string></test> - <test rtl="True"><string>ل<em>سبب</em>ف</string></test> - </testgroup> - <testgroup label="seen + beh + beh + beh"> - <test rtl="True"><string><em>سببب</em></string></test> - <test rtl="True"><string>ل<em>سببب</em></string></test> - <test rtl="True"><string><em>سببب</em>ف</string></test> - <test rtl="True"><string>ل<em>سببب</em>ف</string></test> - </testgroup> - <testgroup label="sad + beh + beh"> - <test rtl="True"><string><em>صبب</em></string></test> - <test rtl="True"><string>ل<em>صبب</em></string></test> - <test rtl="True"><string><em>صبب</em>ف</string></test> - <test rtl="True"><string>ل<em>صبب</em>ف</string></test> - </testgroup> - <testgroup label="sad + beh + beh + beh"> - <test rtl="True"><string><em>صببب</em></string></test> - <test rtl="True"><string>ل<em>صببب</em></string></test> - <test rtl="True"><string><em>صببب</em>ف</string></test> - <test rtl="True"><string>ل<em>صببب</em>ف</string></test> - </testgroup> - <testgroup label="tah + beh + beh"> - <test rtl="True"><string><em>طبب</em></string></test> - <test rtl="True"><string>ل<em>طبب</em></string></test> - <test rtl="True"><string><em>طبب</em>ف</string></test> - <test rtl="True"><string>ل<em>طبب</em>ف</string></test> - </testgroup> - <testgroup label="tah + beh + beh + beh"> - <test rtl="True"><string><em>طببب</em></string></test> - <test rtl="True"><string>ل<em>طببب</em></string></test> - <test rtl="True"><string><em>طببب</em>ف</string></test> - <test rtl="True"><string>ل<em>طببب</em>ف</string></test> - </testgroup> - <testgroup label="ain + beh + beh"> - <test rtl="True"><string><em>عبب</em></string></test> - <test rtl="True"><string>ل<em>عبب</em></string></test> - <test rtl="True"><string><em>عبب</em>ف</string></test> - <test rtl="True"><string>ل<em>عبب</em>ف</string></test> - </testgroup> - <testgroup label="ain + beh + beh + beh"> - <test rtl="True"><string><em>عببب</em></string></test> - <test rtl="True"><string>ل<em>عببب</em></string></test> - <test rtl="True"><string><em>عببب</em>ف</string></test> - <test rtl="True"><string>ل<em>عببب</em>ف</string></test> - </testgroup> - <testgroup label="feh + beh + beh"> - <test rtl="True"><string><em>فبب</em></string></test> - <test rtl="True"><string>ل<em>فبب</em></string></test> - <test rtl="True"><string><em>فبب</em>ف</string></test> - <test rtl="True"><string>ل<em>فبب</em>ف</string></test> - </testgroup> - <testgroup label="feh + beh + beh + beh"> - <test rtl="True"><string><em>فببب</em></string></test> - <test rtl="True"><string>ل<em>فببب</em></string></test> - <test rtl="True"><string><em>فببب</em>ف</string></test> - <test rtl="True"><string>ل<em>فببب</em>ف</string></test> - </testgroup> - <testgroup label="lam + beh + beh"> - <test rtl="True"><string><em>لبب</em></string></test> - <test rtl="True"><string>ل<em>لبب</em></string></test> - <test rtl="True"><string><em>لبب</em>ف</string></test> - <test rtl="True"><string>ل<em>لبب</em>ف</string></test> - </testgroup> - <testgroup label="lam + beh + beh + beh"> - <test rtl="True"><string><em>لببب</em></string></test> - <test rtl="True"><string>ل<em>لببب</em></string></test> - <test rtl="True"><string><em>لببب</em>ف</string></test> - <test rtl="True"><string>ل<em>لببب</em>ف</string></test> - </testgroup> - <testgroup label="meem + beh + beh"> - <test rtl="True"><string><em>مبب</em></string></test> - <test rtl="True"><string>ل<em>مبب</em></string></test> - <test rtl="True"><string><em>مبب</em>ف</string></test> - <test rtl="True"><string>ل<em>مبب</em>ف</string></test> - </testgroup> - <testgroup label="meem + beh + beh + beh"> - <test rtl="True"><string><em>مببب</em></string></test> - <test rtl="True"><string>ل<em>مببب</em></string></test> - <test rtl="True"><string><em>مببب</em>ف</string></test> - <test rtl="True"><string>ل<em>مببب</em>ف</string></test> - </testgroup> - <testgroup label="kaf + beh + beh"> - <test rtl="True"><string><em>کبب</em></string></test> - <test rtl="True"><string>ل<em>کبب</em></string></test> - <test rtl="True"><string><em>کبب</em>ف</string></test> - <test rtl="True"><string>ل<em>کبب</em>ف</string></test> - </testgroup> - <testgroup label="kaf + beh + beh + beh"> - <test rtl="True"><string><em>کببب</em></string></test> - <test rtl="True"><string>ل<em>کببب</em></string></test> - <test rtl="True"><string><em>کببب</em>ف</string></test> - <test rtl="True"><string>ل<em>کببب</em>ف</string></test> - </testgroup> - <testgroup label="gaf + beh + beh"> - <test rtl="True"><string><em>گبب</em></string></test> - <test rtl="True"><string>ل<em>گبب</em></string></test> - <test rtl="True"><string><em>گبب</em>ف</string></test> - <test rtl="True"><string>ل<em>گبب</em>ف</string></test> - </testgroup> - <testgroup label="gaf + beh + beh + beh"> - <test rtl="True"><string><em>گببب</em></string></test> - <test rtl="True"><string>ل<em>گببب</em></string></test> - <test rtl="True"><string><em>گببب</em>ف</string></test> - <test rtl="True"><string>ل<em>گببب</em>ف</string></test> - </testgroup> - <testgroup label="hehDo + beh + beh"> - <test rtl="True"><string><em>ھبب</em></string></test> - <test rtl="True"><string>ل<em>ھبب</em></string></test> - <test rtl="True"><string><em>ھبب</em>ف</string></test> - <test rtl="True"><string>ل<em>ھبب</em>ف</string></test> - </testgroup> - <testgroup label="hehDo + beh + beh + beh"> - <test rtl="True"><string><em>ھببب</em></string></test> - <test rtl="True"><string>ل<em>ھببب</em></string></test> - <test rtl="True"><string><em>ھببب</em>ف</string></test> - <test rtl="True"><string>ل<em>ھببب</em>ف</string></test> - </testgroup> - <testgroup label="hehGoal + beh + beh"> - <test rtl="True"><string><em>ہبب</em></string></test> - <test rtl="True"><string>ل<em>ہبب</em></string></test> - <test rtl="True"><string><em>ہبب</em>ف</string></test> - <test rtl="True"><string>ل<em>ہبب</em>ف</string></test> - </testgroup> - <testgroup label="hehGoal + beh + beh + beh"> - <test rtl="True"><string><em>ہببب</em></string></test> - <test rtl="True"><string>ل<em>ہببب</em></string></test> - <test rtl="True"><string><em>ہببب</em>ف</string></test> - <test rtl="True"><string>ل<em>ہببب</em>ف</string></test> - </testgroup> - </testgroup> - <testgroup label="Seen/Sad + Beh sequences"> - <testgroup label="seen + beh + sad"> - <test rtl="True"><string><em>سبص</em></string></test> - <test rtl="True"><string>ل<em>سبص</em></string></test> - <test rtl="True"><string><em>سبص</em>ف</string></test> - <test rtl="True"><string>ل<em>سبص</em>ف</string></test> - </testgroup> - <testgroup label="seen + beh + tah"> - <test rtl="True"><string><em>سبط</em></string></test> - <test rtl="True"><string>ل<em>سبط</em></string></test> - <test rtl="True"><string><em>سبط</em>ف</string></test> - <test rtl="True"><string>ل<em>سبط</em>ف</string></test> - </testgroup> - <testgroup label="seen + beh + ain"> - <test rtl="True"><string><em>سبع</em></string></test> - <test rtl="True"><string>ل<em>سبع</em></string></test> - <test rtl="True"><string><em>سبع</em>ف</string></test> - <test rtl="True"><string>ل<em>سبع</em>ف</string></test> - </testgroup> - <testgroup label="seen + beh + feh"> - <test rtl="True"><string><em>سبف</em></string></test> - <test rtl="True"><string>ل<em>سبف</em></string></test> - <test rtl="True"><string><em>سبف</em>ف</string></test> - <test rtl="True"><string>ل<em>سبف</em>ف</string></test> - </testgroup> - <testgroup label="seen + beh + qaf"> - <test rtl="True"><string><em>سبق</em></string></test> - <test rtl="True"><string>ل<em>سبق</em></string></test> - <test rtl="True"><string><em>سبق</em>ف</string></test> - <test rtl="True"><string>ل<em>سبق</em>ف</string></test> - </testgroup> - <testgroup label="seen + beh + beh"> - <test rtl="True"><string><em>سبب</em></string></test> - <test rtl="True"><string>ل<em>سبب</em></string></test> - <test rtl="True"><string><em>سبب</em>ف</string></test> - <test rtl="True"><string>ل<em>سبب</em>ف</string></test> - </testgroup> - <testgroup label="sad + beh + sad"> - <test rtl="True"><string><em>صبص</em></string></test> - <test rtl="True"><string>ل<em>صبص</em></string></test> - <test rtl="True"><string><em>صبص</em>ف</string></test> - <test rtl="True"><string>ل<em>صبص</em>ف</string></test> - </testgroup> - <testgroup label="sad + beh + tah"> - <test rtl="True"><string><em>صبط</em></string></test> - <test rtl="True"><string>ل<em>صبط</em></string></test> - <test rtl="True"><string><em>صبط</em>ف</string></test> - <test rtl="True"><string>ل<em>صبط</em>ف</string></test> - </testgroup> - <testgroup label="sad + beh + ain"> - <test rtl="True"><string><em>صبع</em></string></test> - <test rtl="True"><string>ل<em>صبع</em></string></test> - <test rtl="True"><string><em>صبع</em>ف</string></test> - <test rtl="True"><string>ل<em>صبع</em>ف</string></test> - </testgroup> - <testgroup label="sad + beh + feh"> - <test rtl="True"><string><em>صبف</em></string></test> - <test rtl="True"><string>ل<em>صبف</em></string></test> - <test rtl="True"><string><em>صبف</em>ف</string></test> - <test rtl="True"><string>ل<em>صبف</em>ف</string></test> - </testgroup> - <testgroup label="sad + beh + qaf"> - <test rtl="True"><string><em>صبق</em></string></test> - <test rtl="True"><string>ل<em>صبق</em></string></test> - <test rtl="True"><string><em>صبق</em>ف</string></test> - <test rtl="True"><string>ل<em>صبق</em>ف</string></test> - </testgroup> - <testgroup label="sad + beh + beh"> - <test rtl="True"><string><em>صبب</em></string></test> - <test rtl="True"><string>ل<em>صبب</em></string></test> - <test rtl="True"><string><em>صبب</em>ف</string></test> - <test rtl="True"><string>ل<em>صبب</em>ف</string></test> - </testgroup> - </testgroup> - <testgroup label="Beh + Reh sequences"> - <testgroup label="beh + beh + reh"> - <test rtl="True"><string><em>ببر</em></string></test> - <test rtl="True"><string>ل<em>ببر</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>جبر</em></string></test> - <test rtl="True"><string>ل<em>جبر</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>سبر</em></string></test> - <test rtl="True"><string>ل<em>سبر</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>صبر</em></string></test> - <test rtl="True"><string>ل<em>صبر</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>طبر</em></string></test> - <test rtl="True"><string>ل<em>طبر</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>عبر</em></string></test> - <test rtl="True"><string>ل<em>عبر</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>فبر</em></string></test> - <test rtl="True"><string>ل<em>فبر</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>لبر</em></string></test> - <test rtl="True"><string>ل<em>لبر</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>مبر</em></string></test> - <test rtl="True"><string>ل<em>مبر</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>کبر</em></string></test> - <test rtl="True"><string>ل<em>کبر</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>گبر</em></string></test> - <test rtl="True"><string>ل<em>گبر</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>ھبر</em></string></test> - <test rtl="True"><string>ل<em>ھبر</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>ہبر</em></string></test> - <test rtl="True"><string>ل<em>ہبر</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>ببن</em></string></test> - <test rtl="True"><string>ل<em>ببن</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>جبن</em></string></test> - <test rtl="True"><string>ل<em>جبن</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>سبن</em></string></test> - <test rtl="True"><string>ل<em>سبن</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>صبن</em></string></test> - <test rtl="True"><string>ل<em>صبن</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>طبن</em></string></test> - <test rtl="True"><string>ل<em>طبن</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>عبن</em></string></test> - <test rtl="True"><string>ل<em>عبن</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>فبن</em></string></test> - <test rtl="True"><string>ل<em>فبن</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>لبن</em></string></test> - <test rtl="True"><string>ل<em>لبن</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>مبن</em></string></test> - <test rtl="True"><string>ل<em>مبن</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>کبن</em></string></test> - <test rtl="True"><string>ل<em>کبن</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>گبن</em></string></test> - <test rtl="True"><string>ل<em>گبن</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>ھبن</em></string></test> - <test rtl="True"><string>ل<em>ھبن</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>ہبن</em></string></test> - <test rtl="True"><string>ل<em>ہبن</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>ببہ</em></string></test> - <test rtl="True"><string>ل<em>ببہ</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>جبہ</em></string></test> - <test rtl="True"><string>ل<em>جبہ</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>سبہ</em></string></test> - <test rtl="True"><string>ل<em>سبہ</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>صبہ</em></string></test> - <test rtl="True"><string>ل<em>صبہ</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>طبہ</em></string></test> - <test rtl="True"><string>ل<em>طبہ</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>عبہ</em></string></test> - <test rtl="True"><string>ل<em>عبہ</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>فبہ</em></string></test> - <test rtl="True"><string>ل<em>فبہ</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>لبہ</em></string></test> - <test rtl="True"><string>ل<em>لبہ</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>مبہ</em></string></test> - <test rtl="True"><string>ل<em>مبہ</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>کبہ</em></string></test> - <test rtl="True"><string>ل<em>کبہ</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>گبہ</em></string></test> - <test rtl="True"><string>ل<em>گبہ</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>ھبہ</em></string></test> - <test rtl="True"><string>ل<em>ھبہ</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>ہبہ</em></string></test> - <test rtl="True"><string>ل<em>ہبہ</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>بسسس</em></string></test> - <test rtl="True"><string>ل<em>بسسس</em></string></test> - <test rtl="True"><string><em>بسسس</em>ف</string></test> - <test rtl="True"><string>ل<em>بسسس</em>ف</string></test> - </testgroup> - <testgroup label="jeem + seen + seen + seen"> - <test rtl="True"><string><em>جسسس</em></string></test> - <test rtl="True"><string>ل<em>جسسس</em></string></test> - <test rtl="True"><string><em>جسسس</em>ف</string></test> - <test rtl="True"><string>ل<em>جسسس</em>ف</string></test> - </testgroup> - <testgroup label="seen + seen + seen + seen"> - <test rtl="True"><string><em>سسسس</em></string></test> - <test rtl="True"><string>ل<em>سسسس</em></string></test> - <test rtl="True"><string><em>سسسس</em>ف</string></test> - <test rtl="True"><string>ل<em>سسسس</em>ف</string></test> - </testgroup> - <testgroup label="sad + seen + seen + seen"> - <test rtl="True"><string><em>صسسس</em></string></test> - <test rtl="True"><string>ل<em>صسسس</em></string></test> - <test rtl="True"><string><em>صسسس</em>ف</string></test> - <test rtl="True"><string>ل<em>صسسس</em>ف</string></test> - </testgroup> - <testgroup label="tah + seen + seen + seen"> - <test rtl="True"><string><em>طسسس</em></string></test> - <test rtl="True"><string>ل<em>طسسس</em></string></test> - <test rtl="True"><string><em>طسسس</em>ف</string></test> - <test rtl="True"><string>ل<em>طسسس</em>ف</string></test> - </testgroup> - <testgroup label="ain + seen + seen + seen"> - <test rtl="True"><string><em>عسسس</em></string></test> - <test rtl="True"><string>ل<em>عسسس</em></string></test> - <test rtl="True"><string><em>عسسس</em>ف</string></test> - <test rtl="True"><string>ل<em>عسسس</em>ف</string></test> - </testgroup> - <testgroup label="feh + seen + seen + seen"> - <test rtl="True"><string><em>فسسس</em></string></test> - <test rtl="True"><string>ل<em>فسسس</em></string></test> - <test rtl="True"><string><em>فسسس</em>ف</string></test> - <test rtl="True"><string>ل<em>فسسس</em>ف</string></test> - </testgroup> - <testgroup label="lam + seen + seen + seen"> - <test rtl="True"><string><em>لسسس</em></string></test> - <test rtl="True"><string>ل<em>لسسس</em></string></test> - <test rtl="True"><string><em>لسسس</em>ف</string></test> - <test rtl="True"><string>ل<em>لسسس</em>ف</string></test> - </testgroup> - <testgroup label="meem + seen + seen + seen"> - <test rtl="True"><string><em>مسسس</em></string></test> - <test rtl="True"><string>ل<em>مسسس</em></string></test> - <test rtl="True"><string><em>مسسس</em>ف</string></test> - <test rtl="True"><string>ل<em>مسسس</em>ف</string></test> - </testgroup> - <testgroup label="kaf + seen + seen + seen"> - <test rtl="True"><string><em>کسسس</em></string></test> - <test rtl="True"><string>ل<em>کسسس</em></string></test> - <test rtl="True"><string><em>کسسس</em>ف</string></test> - <test rtl="True"><string>ل<em>کسسس</em>ف</string></test> - </testgroup> - <testgroup label="gaf + seen + seen + seen"> - <test rtl="True"><string><em>گسسس</em></string></test> - <test rtl="True"><string>ل<em>گسسس</em></string></test> - <test rtl="True"><string><em>گسسس</em>ف</string></test> - <test rtl="True"><string>ل<em>گسسس</em>ف</string></test> - </testgroup> - <testgroup label="hehDo + seen + seen + seen"> - <test rtl="True"><string><em>ھسسس</em></string></test> - <test rtl="True"><string>ل<em>ھسسس</em></string></test> - <test rtl="True"><string><em>ھسسس</em>ف</string></test> - <test rtl="True"><string>ل<em>ھسسس</em>ف</string></test> - </testgroup> - <testgroup label="hehGoal + seen + seen + seen"> - <test rtl="True"><string><em>ہسسس</em></string></test> - <test rtl="True"><string>ل<em>ہسسس</em></string></test> - <test rtl="True"><string><em>ہسسس</em>ف</string></test> - <test rtl="True"><string>ل<em>ہسسس</em>ف</string></test> - </testgroup> - </testgroup> -</ftml>