From 1f1fecf31b4ae9fa87e818f1f6f9cfebe56eaeb6 Mon Sep 17 00:00:00 2001 From: Khaled Hosny Date: Fri, 20 Sep 2024 18:37:11 +0300 Subject: [PATCH] Use alifTools for shaping tests --- Makefile | 6 +- requirements.in | 1 + requirements.txt | 5 +- scripts/check-shaping.py | 550 - scripts/update-shaping-test.py | 121 - tests/shaping.csv | 1357 - tests/shaping.json | 42008 ++++++++++++++++++++++++++----- tests/shaping.yaml | 1387 + 8 files changed, 37443 insertions(+), 7992 deletions(-) delete mode 100644 scripts/check-shaping.py delete mode 100644 scripts/update-shaping-test.py delete mode 100644 tests/shaping.csv create mode 100644 tests/shaping.yaml diff --git a/Makefile b/Makefile index 69d33ed..01e0051 100644 --- a/Makefile +++ b/Makefile @@ -72,15 +72,15 @@ ${WOFFDIR}/%.woff2: ${FONTDIR}/%.ttf ${TESTDIR}/%-shaping.html: ${FONTDIR}/%.ttf ${TESTDIR}/shaping-config.yml $(info   SHAPE ${" + sequence.b[b0:b1] + "") - new.append("" + sequence.a[a0:a1] + "") - elif opcode == "replace": - old.append("" + sequence.b[b0:b1] + "") - new.append("" + sequence.a[a0:a1] + "") - else: - raise RuntimeError("unexpected opcode") - old = "" + "".join(old) + "" - new = "" + "".join(new) + "" - return "
" + old + "\n" + new + "
" - - -def create_report_item( - vharfbuzz, - message, - text=None, - new_buf=None, - old_buf=None, - note=None, - extra_data=None, -): - message = f"

{message}" - if text: - message += f": {text}" - if note: - message += f" ({note})" - message += "

\n" - if extra_data: - message += f"
{extra_data}
\n" - - serialized_new_buf = None - serialized_old_buf = None - if old_buf: - if isinstance(old_buf, FakeBuffer): - try: - serialized_old_buf = vharfbuzz.serialize_buf(old_buf) - except Exception: - # This may fail if the glyphs are not found in the font - serialized_old_buf = None - old_buf = None # Don't try to draw it either - else: - serialized_old_buf = old_buf - - if new_buf: - glyphsonly = old_buf and isinstance(old_buf, str) - serialized_new_buf = vharfbuzz.serialize_buf(new_buf, glyphsonly=glyphsonly) - - # Report a diff table - if serialized_old_buf and serialized_new_buf: - message += f"{diff(serialized_old_buf, serialized_new_buf)}\n" - - # Now draw it as SVG - if new_buf: - message += f"Got: {fix_svg(vharfbuzz.buf_to_svg(new_buf))}\n" - - if old_buf and isinstance(old_buf, FakeBuffer): - try: - message += f"Expected: {fix_svg(vharfbuzz.buf_to_svg(old_buf))}" - except KeyError: - pass - - return message - - -def get_from_test_with_default(test, configuration, element, default=None): - defaults = configuration.get("defaults", {}) - return test.get(element, defaults.get(element, default)) - - -def get_shaping_parameters(test, configuration): - params = {} - for element in ["script", "language", "direction", "features", "shaper"]: - params[element] = get_from_test_with_default(test, configuration, element) - params["variations"] = get_from_test_with_default( - test, configuration, "variations", {} - ) - return params - - -# This is a very generic "do something with shaping" test runner. -# It'll be given concrete meaning later. -def run_a_set_of_shaping_tests( - config, fontpath, run_a_test, test_filter, generate_report, preparation=None -): - vharfbuzz = Vharfbuzz(fontpath) - - shaping_file_found = False - ran_a_test = False - extra_data = None - - shaping_basedir = config.get("test_directory") - if not shaping_basedir: - yield False, Message( - "no-dir", "Shaping test directory not defined in configuration file" - ) - return - - shaping_basedir = Path(shaping_basedir) - if not shaping_basedir.is_dir(): - yield False, Message( - "not-dir", - f"Shaping test directory {shaping_basedir} not found or not a directory.", - ) - return - - for shaping_file in shaping_basedir.glob("*.json"): - shaping_file_found = True - try: - shaping_input_doc = json.loads(shaping_file.read_text(encoding="utf-8")) - except Exception as e: - yield False, Message( - "shaping-invalid-json", f"{shaping_file}: Invalid JSON: {e}." - ) - return - - configuration = shaping_input_doc.get("configuration", {}) - try: - shaping_tests = shaping_input_doc["tests"] - except KeyError: - yield False, Message( - "shaping-missing-tests", - f"{shaping_file}: JSON file must have a 'tests' key.", - ) - return - - if preparation: - extra_data = preparation(fontpath, configuration) - - failed_shaping_tests = [] - for test in shaping_tests: - if not test_filter(test, configuration): - continue - - if "input" not in test: - yield False, Message( - "shaping-missing-input", - f"{shaping_file}: test is missing an input key.", - ) - return - - exclude_fonts = test.get("exclude", []) - if fontpath.name in exclude_fonts: - continue - - only_fonts = test.get("only") - if only_fonts and fontpath.name not in only_fonts: - continue - - run_a_test( - fontpath, - vharfbuzz, - test, - configuration, - failed_shaping_tests, - extra_data, - ) - ran_a_test = True - - if ran_a_test: - if not failed_shaping_tests: - yield True, Message("pass", f"{shaping_file}: No regression detected") - else: - yield from generate_report( - vharfbuzz, shaping_file, failed_shaping_tests - ) - - if not shaping_file_found: - yield None, Message("skip", "No test files found.") - - if not ran_a_test: - yield None, Message("skip", "No applicable tests ran.") - - -def check_shaping_regression(config, fontpath): - """Check that texts shape as per expectation""" - yield from run_a_set_of_shaping_tests( - config, - fontpath, - run_shaping_regression, - lambda test, configuration: "expectation" in test, - generate_shaping_regression_report, - ) - - -def run_shaping_regression( - fontpath, vharfbuzz, test, configuration, failed_shaping_tests, extra_data -): - shaping_text = test["input"] - parameters = get_shaping_parameters(test, configuration) - output_buf = vharfbuzz.shape(shaping_text, parameters) - expectation = test["expectation"] - if isinstance(expectation, dict): - expectation = expectation.get(fontpath.name, expectation["default"]) - output_serialized = vharfbuzz.serialize_buf( - output_buf, glyphsonly="+" not in expectation - ) - - if output_serialized != expectation: - failed_shaping_tests.append((test, expectation, output_buf, output_serialized)) - - -def generate_shaping_regression_report(vharfbuzz, shaping_file, failed_shaping_tests): - report_items = [] - for test, expected, output_buf, output_serialized in failed_shaping_tests: - extra_data = { - k: test[k] - for k in ["script", "language", "direction", "features", "variations"] - if k in test - } - # Make HTML report here. - if "=" in expected: - buf2 = vharfbuzz.buf_from_string(expected) - else: - buf2 = expected - - report_item = create_report_item( - vharfbuzz=vharfbuzz, - message="Shaping did not match", - text=test["input"], - new_buf=output_buf, - old_buf=buf2, - note=test.get("note"), - extra_data=extra_data, - ) - report_items.append(report_item) - - header = f"{shaping_file}: Expected and actual shaping not matching" - yield False, Message("shaping-regression", header, report_items) - - -def check_shaping_forbidden(config, fontpath): - """Check that no forbidden glyphs are found while shaping""" - yield from run_a_set_of_shaping_tests( - config, - fontpath, - run_forbidden_glyph_test, - lambda test, configuration: "forbidden_glyphs" in configuration, - forbidden_glyph_test_results, - ) - - -def run_forbidden_glyph_test( - fontpath, vharfbuzz, test, configuration, failed_shaping_tests, extra_data -): - - is_stringbrewer = ( - get_from_test_with_default(test, configuration, "input_type", "string") - == "pattern" - ) - parameters = get_shaping_parameters(test, configuration) - forbidden_glyphs = configuration["forbidden_glyphs"] - if is_stringbrewer: - from stringbrewer import StringBrewer - - sb = StringBrewer( - recipe=test["input"], ingredients=configuration["ingredients"] - ) - strings = sb.generate_all() - else: - strings = [test["input"]] - - for shaping_text in strings: - output_buf = vharfbuzz.shape(shaping_text, parameters) - output_serialized = vharfbuzz.serialize_buf(output_buf, glyphsonly=True) - glyph_names = output_serialized.split("|") - for forbidden in forbidden_glyphs: - if forbidden in glyph_names: - failed_shaping_tests.append((shaping_text, output_buf, forbidden)) - - -def forbidden_glyph_test_results(vharfbuzz, shaping_file, failed_shaping_tests): - report_items = [] - for shaping_text, buf, forbidden in failed_shaping_tests: - msg = f"{shaping_text} produced '{forbidden}'" - report_items.append( - create_report_item(vharfbuzz, msg, text=shaping_text, new_buf=buf) - ) - - header = f"{shaping_file}: Forbidden glyphs found while shaping" - yield False, Message("shaping-forbidden", header, report_items) - - -def check_shaping_collides(config, fontpath): - """Check that no collisions are found while shaping""" - yield from run_a_set_of_shaping_tests( - config, - fontpath, - run_collides_glyph_test, - lambda test, configuration: "collidoscope" in test - or "collidoscope" in configuration, - collides_glyph_test_results, - setup_glyph_collides, - ) - - -def setup_glyph_collides(fontpath, configuration): - - collidoscope_configuration = configuration.get("collidoscope") - if not collidoscope_configuration: - return { - "bases": True, - "marks": True, - "faraway": True, - "adjacent_clusters": True, - } - from collidoscope import Collidoscope - - col = Collidoscope( - fontpath, - collidoscope_configuration, - direction=configuration.get("direction", "LTR"), - ) - return {"collidoscope": col} - - -def run_collides_glyph_test( - fontpath, vharfbuzz, test, configuration, failed_shaping_tests, extra_data -): - col = extra_data["collidoscope"] - is_stringbrewer = ( - get_from_test_with_default(test, configuration, "input_type", "string") - == "pattern" - ) - parameters = get_shaping_parameters(test, configuration) - allowed_collisions = get_from_test_with_default( - test, configuration, "allowedcollisions", [] - ) - if is_stringbrewer: - from stringbrewer import StringBrewer - - sb = StringBrewer( - recipe=test["input"], ingredients=configuration["ingredients"] - ) - strings = sb.generate_all() - else: - strings = [test["input"]] - - for shaping_text in strings: - output_buf = vharfbuzz.shape(shaping_text, parameters) - glyphs = col.get_glyphs(shaping_text, buf=output_buf) - collisions = col.has_collisions(glyphs) - bumps = [f"{c.glyph1}/{c.glyph2}" for c in collisions] - bumps = [b for b in bumps if b not in allowed_collisions] - if bumps: - draw = fix_svg(col.draw_overlaps(glyphs, collisions)) - failed_shaping_tests.append((shaping_text, bumps, draw, output_buf)) - - -def collides_glyph_test_results(vharfbuzz, shaping_file, failed_shaping_tests): - report_items = [] - seen_bumps = {} - for shaping_text, bumps, draw, buf in failed_shaping_tests: - # Make HTML report here. - if tuple(bumps) in seen_bumps: - continue - seen_bumps[tuple(bumps)] = True - report_item = create_report_item( - vharfbuzz=vharfbuzz, - message=f"{',' .join(bumps)} collision found in" - f" e.g. {shaping_text}
{draw}
", - new_buf=buf, - ) - report_items.append(report_item) - header = ( - f"{shaping_file}: {len(failed_shaping_tests)} collisions found while shaping" - ) - yield False, Message("shaping-collides", header, report_items) - - -def run_checks(config, fontpath): - return { - "Check that texts shape as per expectation": check_shaping_regression( - config, fontpath - ), - "Check that no forbidden glyphs are found while shaping": check_shaping_forbidden( - config, fontpath - ), - "Check that no collisions are found while shaping": check_shaping_collides( - config, fontpath - ), - } - - -def emoticon(status): - return { - False: "FAIL 🔥", - None: "SKIP ⏩", - True: "PASS ✅", - }[status] - - -def generate_html(results): - all_pass = True - - html = """ - - - - Shaping checks results - - - -

Shaping checks results

-""" - for check, results in results.items(): - html += f"

{check}

\n" - for status, result in results: - if status is False: - all_pass = False - indicator = emoticon(status) - html += f"

{indicator} {result.header}

\n" - if result.items: - items = "\n".join(result.items) - html += f"
\n{items}\n
\n" - html += """ - - -""" - return html, all_pass - - -def main(argv=None): - import argparse - import yaml - - parser = argparse.ArgumentParser(description="Run Google Fonts checks on a font.") - parser.add_argument("font", help="font file", type=Path) - parser.add_argument("config", help="configuration file", type=Path) - parser.add_argument("html", help="output file", type=Path) - - args = parser.parse_args(argv) - - config = yaml.safe_load(args.config.open()) - results = run_checks(config, args.font) - html, status = generate_html(results) - args.html.write_text(html) - return status - - -if __name__ == "__main__": - import sys - - sys.exit(main() == False) diff --git a/scripts/update-shaping-test.py b/scripts/update-shaping-test.py deleted file mode 100644 index e7533f6..0000000 --- a/scripts/update-shaping-test.py +++ /dev/null @@ -1,121 +0,0 @@ -#!/usr/bin/env python3 -# Copyright (c) 2020-2024 Khaled Hosny -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU Affero General Public License as -# published by the Free Software Foundation, either version 3 of the -# License, or (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Affero General Public License for more details. -# -# You should have received a copy of the GNU Affero General Public License -# along with this program. If not, see . - -import csv -import json - -import uharfbuzz as hb - - -def parsefeatures(text): - features = {} - for fea in text.split(","): - if "=" in fea: - fea, val = fea.split("=") - features[fea] = int(val) - else: - features[fea] = True - return features - - -def shape(font, text, direction, script, language, features, variations): - buffer = hb.Buffer() - buffer.add_str(text) - buffer.direction = direction - buffer.script = script - if language: - buffer.language = language - - old_variations = font.get_var_coords_normalized() - if variations: - font.set_variations(variations) - - hb.shape(font, buffer, features) - - output = [] - for info, pos in zip(buffer.glyph_infos, buffer.glyph_positions): - glyph = font.glyph_to_string(info.codepoint) - glyph += f"={info.cluster}" - if pos.x_offset or pos.y_offset: - glyph += f"@{pos.x_offset},{pos.y_offset}" - glyph += f"+{pos.x_advance}" - if pos.y_advance: - glyph += f",{pos.y_advance}" - output.append(glyph) - - if variations: - font.set_var_coords_normalized(old_variations) - - return "|".join(output) - - -def open_font(path): - blob = hb.Blob.from_file_path(path) - face = hb.Face(blob) - font = hb.Font(face) - return font - - -def main(args): - fonts = [open_font(f) for f in args.font] - tests = [] - with open(args.csv) as f: - reader = csv.DictReader(f, delimiter=";", lineterminator="\n") - for test in reader: - test = {k: v for k, v in test.items() if v} - if features := test.get("features"): - test["features"] = parsefeatures(features) - if variations := test.get("variations"): - test["variations"] = parsefeatures(variations) - test["expectation"] = { - ("default" if i == 0 else path.name): shape( - font, - test.get("input"), - test.get("direction", "rtl"), - test.get("script", "arab"), - test.get("language"), - test.get("features"), - test.get("variations"), - ) - for i, (path, font) in enumerate(zip(args.font, fonts)) - } - - tests.append(test) - - doc = { - "configuration": { - "defaults": { - "script": "arab", - "direction": "rtl", - }, - }, - "tests": tests, - } - - args.json.write_text(json.dumps(doc, indent=2, ensure_ascii=False)) - - -if __name__ == "__main__": - from argparse import ArgumentParser - from pathlib import Path - - parser = ArgumentParser() - parser.add_argument("json", type=Path, help="output .json file path.") - parser.add_argument("csv", type=Path, help="input .csv file path.") - parser.add_argument("font", type=Path, nargs="+", help="font to update with.") - - args = parser.parse_args() - main(args) diff --git a/tests/shaping.csv b/tests/shaping.csv deleted file mode 100644 index eab03e8..0000000 --- a/tests/shaping.csv +++ /dev/null @@ -1,1357 +0,0 @@ -input;direction;features;script;language;variations -آ -أ -ؤ -إ -ئ -ا -ب -ش -ع -غ -ف -ر ارا;;;;;SPAC=-100 -۝100;ltr -۝101;ltr -۝102;ltr -۝103;ltr -۝104;ltr -۝105;ltr -۝106;ltr -۝107;ltr -۝108;ltr -۝109;ltr -۝10;ltr -۝110;ltr -۝111;ltr -۝112;ltr -۝113;ltr -۝114;ltr -۝115;ltr -۝116;ltr -۝117;ltr -۝118;ltr -۝119;ltr -۝11;ltr -۝120;ltr -۝121;ltr -۝122;ltr -۝123;ltr -۝124;ltr -۝125;ltr -۝126;ltr -۝127;ltr -۝128;ltr -۝129;ltr -۝12;ltr -۝130;ltr -۝131;ltr -۝132;ltr -۝133;ltr -۝134;ltr -۝135;ltr -۝136;ltr -۝137;ltr -۝138;ltr -۝139;ltr -۝13;ltr -۝140;ltr -۝141;ltr -۝142;ltr -۝143;ltr -۝144;ltr -۝145;ltr -۝146;ltr -۝147;ltr -۝148;ltr -۝149;ltr -۝14;ltr -۝150;ltr -۝151;ltr -۝152;ltr -۝153;ltr -۝154;ltr -۝155;ltr -۝156;ltr -۝157;ltr -۝158;ltr -۝159;ltr -۝15;ltr -۝160;ltr -۝161;ltr -۝162;ltr -۝163;ltr -۝164;ltr -۝165;ltr -۝166;ltr -۝167;ltr -۝168;ltr -۝169;ltr -۝16;ltr -۝170;ltr -۝171;ltr -۝172;ltr -۝173;ltr -۝174;ltr -۝175;ltr -۝176;ltr -۝177;ltr -۝178;ltr -۝179;ltr -۝17;ltr -۝180;ltr -۝181;ltr -۝182;ltr -۝183;ltr -۝184;ltr -۝185;ltr -۝186;ltr -۝187;ltr -۝188;ltr -۝189;ltr -۝18;ltr -۝190;ltr -۝191;ltr -۝192;ltr -۝193;ltr -۝194;ltr -۝195;ltr -۝196;ltr -۝197;ltr -۝198;ltr -۝199;ltr -۝19;ltr -۝200;ltr -۝201;ltr -۝202;ltr -۝203;ltr -۝204;ltr -۝205;ltr -۝206;ltr -۝207;ltr -۝208;ltr -۝209;ltr -۝20;ltr -۝210;ltr -۝211;ltr -۝212;ltr -۝213;ltr -۝214;ltr -۝215;ltr -۝216;ltr -۝217;ltr -۝218;ltr -۝219;ltr -۝21;ltr -۝220;ltr -۝221;ltr -۝222;ltr -۝223;ltr -۝224;ltr -۝225;ltr -۝226;ltr -۝227;ltr -۝228;ltr -۝229;ltr -۝22;ltr -۝230;ltr -۝231;ltr -۝232;ltr -۝233;ltr -۝234;ltr -۝235;ltr -۝236;ltr -۝237;ltr -۝238;ltr -۝239;ltr -۝23;ltr -۝240;ltr -۝241;ltr -۝242;ltr -۝243;ltr -۝244;ltr -۝245;ltr -۝246;ltr -۝247;ltr -۝248;ltr -۝249;ltr -۝24;ltr -۝250;ltr -۝251;ltr -۝252;ltr -۝253;ltr -۝254;ltr -۝255;ltr -۝256;ltr -۝257;ltr -۝258;ltr -۝259;ltr -۝25;ltr -۝260;ltr -۝261;ltr -۝262;ltr -۝263;ltr -۝264;ltr -۝265;ltr -۝266;ltr -۝267;ltr -۝268;ltr -۝269;ltr -۝26;ltr -۝270;ltr -۝271;ltr -۝272;ltr -۝273;ltr -۝274;ltr -۝275;ltr -۝276;ltr -۝277;ltr -۝278;ltr -۝279;ltr -۝27;ltr -۝280;ltr -۝281;ltr -۝282;ltr -۝283;ltr -۝284;ltr -۝285;ltr -۝286;ltr -۝287;ltr -۝288;ltr -۝289;ltr -۝28;ltr -۝290;ltr -۝291;ltr -۝292;ltr -۝293;ltr -۝294;ltr -۝295;ltr -۝296;ltr -۝297;ltr -۝298;ltr -۝299;ltr -۝29;ltr -۝300;ltr -۝30;ltr -۝31;ltr -۝32;ltr -۝33;ltr -۝34;ltr -۝35;ltr -۝36;ltr -۝37;ltr -۝38;ltr -۝39;ltr -۝40;ltr -۝41;ltr -۝42;ltr -۝43;ltr -۝44;ltr -۝45;ltr -۝46;ltr -۝47;ltr -۝48;ltr -۝49;ltr -۝50;ltr -۝51;ltr -۝52;ltr -۝53;ltr -۝54;ltr -۝55;ltr -۝56;ltr -۝57;ltr -۝58;ltr -۝59;ltr -۝60;ltr -۝61;ltr -۝62;ltr -۝63;ltr -۝64;ltr -۝65;ltr -۝66;ltr -۝67;ltr -۝68;ltr -۝69;ltr -۝70;ltr -۝71;ltr -۝72;ltr -۝73;ltr -۝74;ltr -۝75;ltr -۝76;ltr -۝77;ltr -۝78;ltr -۝79;ltr -۝80;ltr -۝81;ltr -۝82;ltr -۝83;ltr -۝84;ltr -۝85;ltr -۝86;ltr -۝87;ltr -۝88;ltr -۝89;ltr -۝90;ltr -۝91;ltr -۝92;ltr -۝93;ltr -۝94;ltr -۝95;ltr -۝96;ltr -۝97;ltr -۝98;ltr -۝99;ltr -أَ -أُ -ؤَ -ؤُ -ؤِ -إِ -ئم -ئُ -ئِ -اء -اَ -اُ -با -بب -بح -بش -بع -بل -به -بي -تا -ثا -جج -جح -حا -حب -حح -حد -حر -حس -حض -حط -حع -حف -حق -حك -حل -حم -حن -حه -حو -حى -حے -دَ -سا -سب -سح -سد -سر -سس -سض -سط -سع -سف -سق -سك -سل -سم -سن -سه -سو -سى -سي -سٍ -سِ -سے -شي -صح -صٍ -صِ -صے -طح -طً -طَ -طے -عا -عب -عح -عد -عر -عس -عض -عط -عع -عف -عق -عك -عل -عم -عن -عه -عو -عى -عي -عے -ـد -فا -فب -فد -فر -فس -فص -فط -فع -فف -فق -فك -فل -فم -فن -فه -فو -فى -في -فے -قل -كا -كد -كر -كم -كن -كي -كً -كَ -كے -لآ -لأ -لح -لم -لي -لً -لٍ -لَ -لِ -لے -ما -مح -مر -مم -من -مو -مے -نٍ -نِ -هح -هم -هن -هے -وٕ -ىٕ -ىے -◌ً -◌ٌ -◌ٍ -◌َ -◌ُ -◌ِ -◌ٓ -◌ٔ -◌ٕ -مر امرا;;;;;SPAC=-100 -لم تحاجون -بي;;salt -حى;;salt -سى;;salt -سي;;salt -شي;;salt -عى;;salt -عي;;salt -فى;;salt -في;;salt -كي;;salt -لي;;salt -يٍ;;salt -يِ;;salt -بي;;salt=2 -حى;;salt=2 -سى;;salt=2 -سي;;salt=2 -شي;;salt=2 -عى;;salt=2 -عي;;salt=2 -فى;;salt=2 -في;;salt=2 -كي;;salt=2 -لي;;salt=2 -۝٠;ltr -۝١;ltr -۝٢;ltr -۝٣;ltr -۝٤;ltr -۝٥;ltr -۝٦;ltr -۝٧;ltr -۝٨;ltr -۝٩;ltr -۝٥;ltr;salt -ئفة -ئِم -اطح -الح -الے -ببا -ببب -ببن -بسم -بسن -بسي -بسٍ -بشي -بعا -بعد -بعض -بعن -بـد -بـك -بفخ -بفن -بكم -بلا -بلٍ -بلِ -بما -بمح -بمن -بنم -بني -بنٍ -بهح -بهم -بهن -بهو -بيت -بين -بُل -تبع -تتا -تعا -تعب -تعل -ثثا -ثغر -ججا -جلح -جنح -جنى -حال -حبا -حبب -حبر -حبه -حبو -حبى -حتى -حجج -حسا -حضا -حطا -حعا -حكا -حلا -حلن -حما -حمم -حها -حهم -حير -حيم -حيو -حپر -حپو -سبا -سبب -سبه -سسا -سسي -سضا -سطا -سعا -سكا -سلا -سلن -سما -سمم -سها -سهم -سيء -سيا -سيم -شئِ -ششش -شيق -صبا -صسي -طبا -طحح -طسي -طلم -طلى -عبا -عبب -عبم -عبه -عسا -عسي -عضا -عطا -ععا -ععع -عكا -علا -علج -علل -علم -علن -على -علي -عما -عمم -عها -عهم -عيم -غغغ -ــد -فبا -فبب -فبم -فبه -فتح -فحا -فحح -فسا -فسي -فصا -فطا -فعا -ففا -فكا -فلآ -فلأ -فلا -فما -فمم -فمن -فها -فهم -فهو -قال -قلم -كسي -كـا -كلا -كما -كمم -كًا -لأَ -لأُ -لإِ -لبا -لحد -لحم -لحے -لسا -لسب -لسد -لسر -لسس -لسض -لسط -لسع -لسف -لسق -لسك -لسل -لسم -لسن -لسه -لسو -لسى -لسي -لسے -لصے -لطم -لطے -لعے -لفے -لكے -للے -لما -لمح -لمم -لمے -لهے -لىے -ليس -متا -مثا -مثل -مسي -ملى -مما -ممح -منه -مُل -نسا -نسب -نسد -نسر -نسس -نسض -نسط -نسع -نسف -نسق -نسك -نسل -نسم -نسن -نسه -نسو -نسى -نسے -نشا -نعا -نعب -نعد -نعر -نعس -نعض -نعط -نعع -نعف -نعق -نعك -نعل -نعم -نعن -نعه -نعو -نعى -نعے -نـا -نفا -نفب -نفد -نفر -نفس -نفض -نفط -نفع -نفف -نفق -نفك -نفل -نفم -نفن -نفه -نفو -نفى -نفے -نقد -ننا -نهم -نين -هسي -وسے -وصے -وفے -ولح -ىِٕ -يعج -يعظ -يقظ -يمر -يمن -وقح لا -حال;;;;;SPAC=-100 -قال;;;;;SPAC=-100 -بسي;;salt -بشي;;salt -بني;;salt -جنى;;salt -سسي;;salt -صسي;;salt -طسي;;salt -طلى;;salt -عسي;;salt -على;;salt -فسي;;salt -كسي;;salt -لسى;;salt -لسي;;salt -ليً;;salt -مسي;;salt -ملى;;salt -نسى;;salt -نعى;;salt -نفى;;salt -هسي;;salt -علي;;salt=2 -مني;;salt=2 -بني;;ss01 -نبي;;ss01 -۝١٠;ltr -۝١١;ltr -۝١٢;ltr -۝١٣;ltr -۝١٤;ltr -۝١٥;ltr -۝١٦;ltr -۝١٧;ltr -۝١٨;ltr -۝١٩;ltr -۝٢٠;ltr -۝٢١;ltr -۝٢٢;ltr -۝٢٣;ltr -۝٢٤;ltr -۝٢٥;ltr -۝٢٦;ltr -۝٢٧;ltr -۝٢٨;ltr -۝٢٩;ltr -۝٣٠;ltr -۝٣١;ltr -۝٣٢;ltr -۝٣٣;ltr -۝٣٤;ltr -۝٣٥;ltr -۝٣٦;ltr -۝٣٧;ltr -۝٣٨;ltr -۝٣٩;ltr -۝٤٠;ltr -۝٤١;ltr -۝٤٢;ltr -۝٤٣;ltr -۝٤٤;ltr -۝٤٥;ltr -۝٤٦;ltr -۝٤٧;ltr -۝٤٨;ltr -۝٤٩;ltr -۝٥٠;ltr -۝٥١;ltr -۝٥٢;ltr -۝٥٣;ltr -۝٥٤;ltr -۝٥٥;ltr -۝٥٦;ltr -۝٥٧;ltr -۝٥٨;ltr -۝٥٩;ltr -۝٦٠;ltr -۝٦١;ltr -۝٦٢;ltr -۝٦٣;ltr -۝٦٤;ltr -۝٦٥;ltr -۝٦٦;ltr -۝٦٧;ltr -۝٦٨;ltr -۝٦٩;ltr -۝٧٠;ltr -۝٧١;ltr -۝٧٢;ltr -۝٧٣;ltr -۝٧٤;ltr -۝٧٥;ltr -۝٧٦;ltr -۝٧٧;ltr -۝٧٨;ltr -۝٧٩;ltr -۝٨٠;ltr -۝٨١;ltr -۝٨٢;ltr -۝٨٣;ltr -۝٨٤;ltr -۝٨٥;ltr -۝٨٦;ltr -۝٨٧;ltr -۝٨٨;ltr -۝٨٩;ltr -۝٩٠;ltr -۝٩١;ltr -۝٩٢;ltr -۝٩٣;ltr -۝٩٤;ltr -۝٩٥;ltr -۝٩٦;ltr -۝٩٧;ltr -۝٩٨;ltr -۝٩٩;ltr -ءامن -أضاء -ابطح -اطيح -افنے -الحا -الحج -الله -انحح -اوتے -بببا -ببسه -ببسي -بتمح -بسبه -بسسي -بصبا -بصسي -بطبا -بطسي -بعبه -بعجل -بعسي -بــك -بفبه -بفسي -بكسي -بكـا -بكمم -بلبا -بلسي -بللٍ -بمسي -بمما -بنخل -بنين -بنيه -بهبا -بهجة -بهسي -بهمن -بيبن -بُمل -تتتا -تعبا -تعبت -تعبه -تعلم -تعلو -تغنم -ثثثا -جججج -جلحو -حالت -ريحا -سبإٍ -سببا -سبيل -سحيق -سوءِ -سِيء -صــا -طارق -طريق -عليم -علِي -عيسى -فبيا -فلاُ -فلِي -قالت -قلنا -كلمة -لبشر -لحلا -لسبا -لسبب -لسبه -لسسا -لسسي -لسضا -لسطا -لسعا -لسكا -لسلا -لسلن -لسما -لسمم -لسها -لسهم -لسيم -لمحا -لممح -لمهم -مذهل -مفصح -ممسي -ممما -منهم -منين -نسبا -نسبب -نسسا -نسضا -نسطا -نسعا -نسكا -نسلا -نسلن -نسما -نسمم -نسها -نسهم -نسيم -نعبا -نعبب -نعسا -نعضا -نعطا -نععا -نعكا -نعلا -نعلن -نعما -نعمم -نعها -نعهم -نعيم -نــا -نفبا -نفبب -نفسا -نفضا -نفطا -نفعا -نفكا -نفلا -نفلن -نفما -نفمم -نفها -نفهم -نقيم -نننا -هالخ -وبخا -ولجا -يتخذ -يجبي -يحيي -يشعر -يلجل -يلمح -يمما -يممر -يممو -حالت;;;;;SPAC=-100 -قالت;;;;;SPAC=-100 -ببسي;;salt -بسسي;;salt -بصسي;;salt -بطسي;;salt -بعسي;;salt -بفسي;;salt -بكسي;;salt -بلسي;;salt -بمسي;;salt -بهسي;;salt -عيسى;;salt -فلِي;;salt -لسسي;;salt -ممسي;;salt -يجبي;;salt -يحيي;;salt -۝١٠٠;ltr -۝١٠١;ltr -۝١٠٢;ltr -۝١٠٣;ltr -۝١٠٤;ltr -۝١٠٥;ltr -۝١٠٦;ltr -۝١٠٧;ltr -۝١٠٨;ltr -۝١٠٩;ltr -۝١١٠;ltr -۝١١١;ltr -۝١١٢;ltr -۝١١٣;ltr -۝١١٤;ltr -۝١١٥;ltr -۝١١٦;ltr -۝١١٧;ltr -۝١١٨;ltr -۝١١٩;ltr -۝١٢٠;ltr -۝١٢١;ltr -۝١٢٢;ltr -۝١٢٣;ltr -۝١٢٤;ltr -۝١٢٥;ltr -۝١٢٦;ltr -۝١٢٧;ltr -۝١٢٨;ltr -۝١٢٩;ltr -۝١٣٠;ltr -۝١٣١;ltr -۝١٣٢;ltr -۝١٣٣;ltr -۝١٣٤;ltr -۝١٣٥;ltr -۝١٣٦;ltr -۝١٣٧;ltr -۝١٣٨;ltr -۝١٣٩;ltr -۝١٤٠;ltr -۝١٤١;ltr -۝١٤٢;ltr -۝١٤٣;ltr -۝١٤٤;ltr -۝١٤٥;ltr -۝١٤٦;ltr -۝١٤٧;ltr -۝١٤٨;ltr -۝١٤٩;ltr -۝١٥٠;ltr -۝١٥١;ltr -۝١٥٢;ltr -۝١٥٣;ltr -۝١٥٤;ltr -۝١٥٥;ltr -۝١٥٦;ltr -۝١٥٧;ltr -۝١٥٨;ltr -۝١٥٩;ltr -۝١٦٠;ltr -۝١٦١;ltr -۝١٦٢;ltr -۝١٦٣;ltr -۝١٦٤;ltr -۝١٦٥;ltr -۝١٦٦;ltr -۝١٦٧;ltr -۝١٦٨;ltr -۝١٦٩;ltr -۝١٧٠;ltr -۝١٧١;ltr -۝١٧٢;ltr -۝١٧٣;ltr -۝١٧٤;ltr -۝١٧٥;ltr -۝١٧٦;ltr -۝١٧٧;ltr -۝١٧٨;ltr -۝١٧٩;ltr -۝١٨٠;ltr -۝١٨١;ltr -۝١٨٢;ltr -۝١٨٣;ltr -۝١٨٤;ltr -۝١٨٥;ltr -۝١٨٦;ltr -۝١٨٧;ltr -۝١٨٨;ltr -۝١٨٩;ltr -۝١٩٠;ltr -۝١٩١;ltr -۝١٩٢;ltr -۝١٩٣;ltr -۝١٩٤;ltr -۝١٩٥;ltr -۝١٩٦;ltr -۝١٩٧;ltr -۝١٩٨;ltr -۝١٩٩;ltr -۝٢٠٠;ltr -۝٢٠١;ltr -۝٢٠٢;ltr -۝٢٠٣;ltr -۝٢٠٤;ltr -۝٢٠٥;ltr -۝٢٠٦;ltr -۝٢٠٧;ltr -۝٢٠٨;ltr -۝٢٠٩;ltr -۝٢١٠;ltr -۝٢١١;ltr -۝٢١٢;ltr -۝٢١٣;ltr -۝٢١٤;ltr -۝٢١٥;ltr -۝٢١٦;ltr -۝٢١٧;ltr -۝٢١٨;ltr -۝٢١٩;ltr -۝٢٢٠;ltr -۝٢٢١;ltr -۝٢٢٢;ltr -۝٢٢٣;ltr -۝٢٢٤;ltr -۝٢٢٥;ltr -۝٢٢٦;ltr -۝٢٢٧;ltr -۝٢٢٨;ltr -۝٢٢٩;ltr -۝٢٣٠;ltr -۝٢٣١;ltr -۝٢٣٢;ltr -۝٢٣٣;ltr -۝٢٣٤;ltr -۝٢٣٥;ltr -۝٢٣٦;ltr -۝٢٣٧;ltr -۝٢٣٨;ltr -۝٢٣٩;ltr -۝٢٤٠;ltr -۝٢٤١;ltr -۝٢٤٢;ltr -۝٢٤٣;ltr -۝٢٤٤;ltr -۝٢٤٥;ltr -۝٢٤٦;ltr -۝٢٤٧;ltr -۝٢٤٨;ltr -۝٢٤٩;ltr -۝٢٥٠;ltr -۝٢٥١;ltr -۝٢٥٢;ltr -۝٢٥٣;ltr -۝٢٥٤;ltr -۝٢٥٥;ltr -۝٢٥٦;ltr -۝٢٥٧;ltr -۝٢٥٨;ltr -۝٢٥٩;ltr -۝٢٦٠;ltr -۝٢٦١;ltr -۝٢٦٢;ltr -۝٢٦٣;ltr -۝٢٦٤;ltr -۝٢٦٥;ltr -۝٢٦٦;ltr -۝٢٦٧;ltr -۝٢٦٨;ltr -۝٢٦٩;ltr -۝٢٧٠;ltr -۝٢٧١;ltr -۝٢٧٢;ltr -۝٢٧٣;ltr -۝٢٧٤;ltr -۝٢٧٥;ltr -۝٢٧٦;ltr -۝٢٧٧;ltr -۝٢٧٨;ltr -۝٢٧٩;ltr -۝٢٨٠;ltr -۝٢٨١;ltr -۝٢٨٢;ltr -۝٢٨٣;ltr -۝٢٨٤;ltr -۝٢٨٥;ltr -۝٢٨٦;ltr -۝٢٨٧;ltr -۝٢٨٨;ltr -۝٢٨٩;ltr -۝٢٩٠;ltr -۝٢٩١;ltr -۝٢٩٢;ltr -۝٢٩٣;ltr -۝٢٩٤;ltr -۝٢٩٥;ltr -۝٢٩٦;ltr -۝٢٩٧;ltr -۝٢٩٨;ltr -۝٢٩٩;ltr -۝٣٠٠;ltr -ءَامن -أضاءَ -أيلمح -اتبعو -اططحح -اطفيح -البلح -الطيح -القصص -الكتب -النبي -ايعنے -بببسي -بتحية -بحححا -بممما -بنيهم -بيحيي -بيننا -ججججا -جنحوا -حنيفا -قليلا -لحححا -لممحا -لنبين -ليتخذ -ليفجر -مبنيه -مجلجل -وءامن -يحسبن -يلمحح -النبي;;salt -بببسي;;salt -بيحيي;;salt -الرحمن -الرحيم -السلطح -المليح -ببببسي -بححححا -بطططحة -تحسنين -تخطبني -تعلمون -تيــتم -حاججتم -رِزقاً -لتحسبو -لححححا -لسنتهم -مسلمون -مَثلاً -يلبسون -يُضِلُ -ببببسي;;salt -تخطبني;;salt -تخطبني;;ss01 -اطلططحی -الحجارة -الطبجبج -اللبجلج -الملتحف -فسنيسرك -كَلِمةٍ -ملجـًٔا -ٮٮسـٰها -اطلططحی;;salt -الاصطخري -الحجَارة -المتلجلج -المســيح -بببببببب -فتستجيبو -يستهزءون -يــــتخذ -الاصطخري;;salt -التمنفحمد -ليواطـُٔو -يستهزءُون -قـلم -قـلن -فـبم -فـبن diff --git a/tests/shaping.json b/tests/shaping.json index 4616f46..9d29710 100644 --- a/tests/shaping.json +++ b/tests/shaping.json @@ -1,10335 +1,40423 @@ { - "configuration": { - "defaults": { - "script": "arab", - "direction": "rtl" - } - }, "tests": [ { - "input": "آ", - "expectation": { - "default": "madda-ar=0@-138,551+0|alef-ar=0+658", - "RaqqSura.ttf": "madda-ar=0@-137,551+0|alef-ar=0+642" + "only": "Raqq.ttf", + "input": "ر ارا", + "expectation": "alef-ar=4+658|reh-ar=3@300,0+750|alef-ar=2@360,0+1018|space=1+400|reh-ar=0+450", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 } }, { - "input": "أ", - "expectation": { - "default": "fatha-ar=0@72,547+0|alef-ar=0+658", - "RaqqSura.ttf": "fatha-ar=0@73,547+0|alef-ar=0+642" + "only": "Raqq.ttf", + "input": "ر ارا", + "expectation": "alef-ar=4+658|reh-ar=3@-80,0+370|alef-ar=2@-20,0+638|space.mark=1+0|reh-ar=0@-80,0+370", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 } }, { - "input": "ؤ", - "expectation": { - "default": "hamzaabove-ar=0@-12,209+0|waw-ar=0+509", - "RaqqSura.ttf": "hamzaabove-ar=0@-5,191+0|waw-ar=0+516" + "only": "Raqq.ttf", + "input": "مر امرا", + "expectation": "alef-ar=6+658|reh-ar.fina=5@250,0+643|meem-ar.init.round=4@20,0+418|alef-ar=3@379,0+1037|space=2+400|reh-ar.fina=1+393|meem-ar.init.round=0@20,0+418", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 } }, { - "input": "إ", - "expectation": { - "default": "kasra-ar=0@297,-177+0|alef-ar=0+658", - "RaqqSura.ttf": "kasra-ar=0@298,-177+0|alef-ar=0+642" + "only": "Raqq.ttf", + "input": "مر امرا", + "expectation": "alef-ar=6+658|reh-ar.fina=5@-130,0+263|meem-ar.init.round=4@20,0+418|alef-ar=3@-1,0+657|space.mark=2+0|reh-ar.fina=1@-130,0+263|meem-ar.init.round=0@20,0+418", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 } }, { - "input": "ئ", - "expectation": { - "default": "fatha-ar=0@56,276+0|alefMaksura-ar=0+395", - "RaqqSura.ttf": "fatha-ar=0@56,276+0|alefMaksura-ar=0+393" + "only": "Raqq.ttf", + "input": "حال", + "expectation": "lam-ar=2+186|alef-ar.fina=1@400,0+501|_c.hah.beh=0+7|hah-ar.init=0+703", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 } }, { - "input": "ا", - "expectation": { - "default": "alef-ar=0+658", - "RaqqSura.ttf": "alef-ar=0+642" + "only": "Raqq.ttf", + "input": "حال", + "expectation": "lam-ar.short=2+186|alef-ar.fina=1@20,0+121|_c.hah.beh=0+7|hah-ar.init=0+703", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 } }, { - "input": "ب", - "expectation": { - "default": "dotbelow-ar=0@959,-59+0|behDotless-ar=0+1007", - "RaqqSura.ttf": "dotbelow-ar=0@959,-59+0|behDotless-ar=0+1007" + "only": "Raqq.ttf", + "input": "قال", + "expectation": "lam-ar=2+186|twodotsverticalabove-ar=0@523,402+0|fehDotless_alef-ar=0@400,0+960", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 } }, { - "input": "ش", - "expectation": { - "default": "threedotshorizontalabove-ar.4=0@5,222+0|seen-ar=0+506", - "RaqqSura.ttf": "threedotshorizontalabove-ar.4=0@3,224+0|seen-ar=0+496" + "only": "Raqq.ttf", + "input": "قال", + "expectation": "lam-ar.short=2+186|twodotsverticalabove-ar=0@126,402+0|fehDotless_alef-ar=0@3,0+563", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 } }, { - "input": "ع", - "expectation": { - "default": "ain-ar=0+982", - "RaqqSura.ttf": "ain-ar=0+995" + "only": "Raqq.ttf", + "input": "حالت", + "expectation": "twodotsverticalabove-ar=3@803,264+0|behDotless-ar.fina=3+984|_c.seen.beh=2+0|lam-ar.init=2+123|alef-ar.fina=1@400,0+501|_c.hah.beh=0+7|hah-ar.init=0+703", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 } }, { - "input": "غ", - "expectation": { - "default": "dotabove-ar=0@303,256+0|ain-ar=0+982", - "RaqqSura.ttf": "dotabove-ar=0@293,290+0|ain-ar=0+995" + "only": "Raqq.ttf", + "input": "حالت", + "expectation": "twodotsverticalabove-ar=3@803,264+0|behDotless-ar.fina=3+984|_c.seen.beh=2+0|lam-ar.init.short=2+123|alef-ar.fina=1@20,0+121|_c.hah.beh=0+7|hah-ar.init=0+703", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 } }, { - "input": "ف", - "expectation": { - "default": "dotabove-ar=0@607,355+0|fehDotless-ar=0+1020", - "RaqqSura.ttf": "dotabove-ar=0@607,355+0|fehDotless-ar=0+1020" + "only": "Raqq.ttf", + "input": "قالت", + "expectation": "twodotsverticalabove-ar=3@803,264+0|behDotless-ar.fina=3+984|_c.seen.beh=2+0|lam-ar.init=2+123|twodotsverticalabove-ar=0@515,402+0|fehDotless_alef-ar=0@392,0+952", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 } }, { - "input": "ر ارا", + "only": "Raqq.ttf", + "input": "قالت", + "expectation": "twodotsverticalabove-ar=3@803,264+0|behDotless-ar.fina=3+984|_c.seen.beh=2+0|lam-ar.init.short=2+123|twodotsverticalabove-ar=0@135,402+0|fehDotless_alef-ar=0@12,0+572", "variations": { - "SPAC": -100 + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بني", + "expectation": "alefMaksura-ar.fina.tooth=2+9|behDotless-ar.medi.round=1+108|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "features": { + "ss01": 1 }, - "expectation": { - "default": "alef-ar=4+658|reh-ar=3@-80,0+370|alef-ar=2@-20,0+638|space.mark=1+0|reh-ar=0@-80,0+370", - "RaqqSura.ttf": "alef-ar=4+642|reh-ar=3@-100,0+353|alef-ar=2@-40,0+602|space.mark=1+0|reh-ar=0@-100,0+353" + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 } }, { - "input": "۝100", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar.10=0+1117|ayah.100=1+0", - "RaqqSura.ttf": "endofayah-ar.10=0+1117|ayah.100=1+0" + "only": "Raqq.ttf", + "input": "بني", + "expectation": "alefMaksura-ar.fina.tooth=2+9|behDotless-ar.medi.round=1+108|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "features": { + "ss01": 1 + }, + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 } }, { - "input": "۝101", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "Raqq.ttf", + "input": "نبي", + "expectation": "alefMaksura-ar.fina.tooth=2+9|behDotless-ar.medi.round=1+108|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "features": { + "ss01": 1 + }, + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 } }, { - "input": "۝102", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "Raqq.ttf", + "input": "نبي", + "expectation": "alefMaksura-ar.fina.tooth=2+9|behDotless-ar.medi.round=1+108|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "features": { + "ss01": 1 + }, + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 } }, { - "input": "۝103", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "Raqq.ttf", + "input": "تخطبني", + "expectation": "alefMaksura-ar.fina.tooth=5+9|behDotless-ar.medi.round=4+108|_c.seen.beh=3+0|behDotless-ar.medi.high=3+128|_c.seen.beh=2+0|tah-ar.medi=2+758|_c.hah.dal=1+71|hah-ar.medi.alt=1@-71,0+64|behDotless-ar.init.hah=0@63,5+572", + "features": { + "ss01": 1 + }, + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 } }, { - "input": "۝104", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "Raqq.ttf", + "input": "تخطبني", + "expectation": "alefMaksura-ar.fina.tooth=5+9|behDotless-ar.medi.round=4+108|_c.seen.beh=3+0|behDotless-ar.medi.high=3+128|_c.seen.beh=2+0|tah-ar.medi=2+758|_c.hah.dal=1+71|hah-ar.medi.alt=1@-71,0+64|behDotless-ar.init.hah=0@63,5+572", + "features": { + "ss01": 1 + }, + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 } }, { - "input": "۝105", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar.05=0+400", - "RaqqSura.ttf": "endofayah-ar.05=0+400" + "only": "Raqq.ttf", + "input": "بي", + "expectation": "twodotsverticalbelow-ar=1@332,-510+0|alefMaksura-ar.fina.wide.salt=1+267|dotbelow-ar=0@72,-46+0|behDotless-ar.init=0+130", + "features": { + "salt": 1 + }, + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 } }, { - "input": "۝106", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "Raqq.ttf", + "input": "بي", + "expectation": "twodotsverticalbelow-ar=1@332,-510+0|alefMaksura-ar.fina.wide.salt=1+267|dotbelow-ar=0@72,-46+0|behDotless-ar.init=0+130", + "features": { + "salt": 1 + }, + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 } }, { - "input": "۝107", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "Raqq.ttf", + "input": "حى", + "expectation": "alefMaksura-ar.fina.salt=1+282|_c.ain.yeh=0@-20,0+-5|hah-ar.init=0@-40,0+663", + "features": { + "salt": 1 + }, + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 } }, { - "input": "۝108", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "Raqq.ttf", + "input": "حى", + "expectation": "alefMaksura-ar.fina.salt=1+282|_c.ain.yeh=0@-20,0+-5|hah-ar.init=0@-40,0+663", + "features": { + "salt": 1 + }, + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 } }, { - "input": "۝109", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "Raqq.ttf", + "input": "سى", + "expectation": "seen_alefMaksura-ar=0+346", + "features": { + "salt": 1 + }, + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 } }, { - "input": "۝10", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar.10=0+1117|ayah.010=1+0", - "RaqqSura.ttf": "endofayah-ar.10=0+1117|ayah.010=1+0" + "only": "Raqq.ttf", + "input": "سى", + "expectation": "seen_alefMaksura-ar=0+346", + "features": { + "salt": 1 + }, + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 } }, { - "input": "۝110", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar.10=0+1117|ayah.110=1+0", - "RaqqSura.ttf": "endofayah-ar.10=0+1117|ayah.110=1+0" + "only": "Raqq.ttf", + "input": "سي", + "expectation": "twodotsverticalbelow-ar=0@330,-337+0|seen_alefMaksura-ar=0+346", + "features": { + "salt": 1 + }, + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 } }, { - "input": "۝111", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "Raqq.ttf", + "input": "سي", + "expectation": "twodotsverticalbelow-ar=0@330,-337+0|seen_alefMaksura-ar=0+346", + "features": { + "salt": 1 + }, + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 } }, { - "input": "۝112", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "Raqq.ttf", + "input": "شي", + "expectation": "twodotsverticalbelow-ar=0@330,-337+0|threedotshorizontalabove-ar.3=0@-35,167+0|seen_alefMaksura-ar=0+346", + "features": { + "salt": 1 + }, + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 } }, { - "input": "۝113", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "Raqq.ttf", + "input": "شي", + "expectation": "twodotsverticalbelow-ar=0@330,-337+0|threedotshorizontalabove-ar.3=0@-35,167+0|seen_alefMaksura-ar=0+346", + "features": { + "salt": 1 + }, + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 } }, { - "input": "۝114", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "Raqq.ttf", + "input": "عى", + "expectation": "alefMaksura-ar.fina.salt=1+282|_c.ain.yeh=0@-20,0+-5|ain-ar.init=0+690", + "features": { + "salt": 1 + }, + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 } }, { - "input": "۝115", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar.05=0+400", - "RaqqSura.ttf": "endofayah-ar.05=0+400" + "only": "Raqq.ttf", + "input": "عى", + "expectation": "alefMaksura-ar.fina.salt=1+282|_c.ain.yeh=0@-20,0+-5|ain-ar.init=0+690", + "features": { + "salt": 1 + }, + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 } }, { - "input": "۝116", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "Raqq.ttf", + "input": "عي", + "expectation": "twodotsverticalbelow-ar=1@259,-523+0|alefMaksura-ar.fina.salt=1+282|_c.ain.yeh=0@-20,0+-5|ain-ar.init=0+690", + "features": { + "salt": 1 + }, + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 } }, { - "input": "۝117", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "Raqq.ttf", + "input": "عي", + "expectation": "twodotsverticalbelow-ar=1@259,-523+0|alefMaksura-ar.fina.salt=1+282|_c.ain.yeh=0@-20,0+-5|ain-ar.init=0+690", + "features": { + "salt": 1 + }, + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 } }, { - "input": "۝118", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "Raqq.ttf", + "input": "فى", + "expectation": "alefMaksura-ar.fina.wide.salt=1+267|dotabove-ar=0@-67,373+0|fehDotless-ar.init.yeh=0+328", + "features": { + "salt": 1 + }, + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 } }, { - "input": "۝119", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "Raqq.ttf", + "input": "فى", + "expectation": "alefMaksura-ar.fina.wide.salt=1+267|dotabove-ar=0@-67,373+0|fehDotless-ar.init.yeh=0+328", + "features": { + "salt": 1 + }, + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 } }, { - "input": "۝11", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "Raqq.ttf", + "input": "في", + "expectation": "twodotsverticalbelow-ar=1@332,-510+0|alefMaksura-ar.fina.wide.salt=1+267|dotabove-ar=0@-67,373+0|fehDotless-ar.init.yeh=0+328", + "features": { + "salt": 1 + }, + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 } }, { - "input": "۝120", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar.10=0+1117|ayah.120=1+0", - "RaqqSura.ttf": "endofayah-ar.10=0+1117|ayah.120=1+0" + "only": "Raqq.ttf", + "input": "في", + "expectation": "twodotsverticalbelow-ar=1@332,-510+0|alefMaksura-ar.fina.wide.salt=1+267|dotabove-ar=0@-67,373+0|fehDotless-ar.init.yeh=0+328", + "features": { + "salt": 1 + }, + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 } }, { - "input": "۝121", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "Raqq.ttf", + "input": "كي", + "expectation": "twodotsverticalbelow-ar=1@259,-523+0|alefMaksura-ar.fina.salt=1+282|kaf-ar.init.alt=0@-36,0+729", + "features": { + "salt": 1 + }, + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 } }, { - "input": "۝122", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "Raqq.ttf", + "input": "كي", + "expectation": "twodotsverticalbelow-ar=1@259,-523+0|alefMaksura-ar.fina.salt=1+282|kaf-ar.init.alt=0@-36,0+729", + "features": { + "salt": 1 + }, + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 } }, { - "input": "۝123", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "Raqq.ttf", + "input": "لي", + "expectation": "twodotsverticalbelow-ar=1@332,-510+0|alefMaksura-ar.fina.wide.salt=1+267|lam-ar.init=0+123", + "features": { + "salt": 1 + }, + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 } }, { - "input": "۝124", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "Raqq.ttf", + "input": "لي", + "expectation": "twodotsverticalbelow-ar=1@332,-510+0|alefMaksura-ar.fina.wide.salt=1+267|lam-ar.init=0+123", + "features": { + "salt": 1 + }, + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 } }, { - "input": "۝125", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar.05=0+400", - "RaqqSura.ttf": "endofayah-ar.05=0+400" + "only": "Raqq.ttf", + "input": "يٍ", + "expectation": "kasratan-ar.alt=0@285,-257+0|twodotsverticalbelow-ar=0@259,-436+0|alefMaksura-ar.salt=0+328", + "features": { + "salt": 1 + }, + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 } }, { - "input": "۝126", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "Raqq.ttf", + "input": "يٍ", + "expectation": "kasratan-ar.alt=0@285,-257+0|twodotsverticalbelow-ar=0@259,-436+0|alefMaksura-ar.salt=0+328", + "features": { + "salt": 1 + }, + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 } }, { - "input": "۝127", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "Raqq.ttf", + "input": "يِ", + "expectation": "kasra-ar=0@285,-190+0|twodotsverticalbelow-ar=0@259,-436+0|alefMaksura-ar.salt=0+328", + "features": { + "salt": 1 + }, + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 } }, { - "input": "۝128", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "Raqq.ttf", + "input": "يِ", + "expectation": "kasra-ar=0@285,-190+0|twodotsverticalbelow-ar=0@259,-436+0|alefMaksura-ar.salt=0+328", + "features": { + "salt": 1 + }, + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 } }, { - "input": "۝129", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "Raqq.ttf", + "input": "بسي", + "expectation": "twodotsverticalbelow-ar=1@339,-337+0|seen_alefMaksura-ar.fina=1+343|dotbelow-ar=0@81,-46+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "features": { + "salt": 1 + }, + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 } }, { - "input": "۝12", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "Raqq.ttf", + "input": "بسي", + "expectation": "twodotsverticalbelow-ar=1@339,-337+0|seen_alefMaksura-ar.fina=1+343|dotbelow-ar=0@81,-46+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "features": { + "salt": 1 + }, + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 } }, { - "input": "۝130", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar.10=0+1117|ayah.130=1+0", - "RaqqSura.ttf": "endofayah-ar.10=0+1117|ayah.130=1+0" + "only": "Raqq.ttf", + "input": "بشي", + "expectation": "twodotsverticalbelow-ar=1@339,-337+0|threedotshorizontalabove-ar.3=1@-35,167+0|seen_alefMaksura-ar.fina=1+343|dotbelow-ar=0@81,-46+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "features": { + "salt": 1 + }, + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 } }, { - "input": "۝131", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "Raqq.ttf", + "input": "بشي", + "expectation": "twodotsverticalbelow-ar=1@339,-337+0|threedotshorizontalabove-ar.3=1@-35,167+0|seen_alefMaksura-ar.fina=1+343|dotbelow-ar=0@81,-46+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "features": { + "salt": 1 + }, + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 } }, { + "only": "Raqq.ttf", + "input": "بني", + "expectation": "twodotsverticalbelow-ar=2@259,-523+0|alefMaksura-ar.fina.salt=2+282|dotabove-ar.beh=1@8,294+0|behDotless-ar.medi=1+128|dotbelow-ar=0@81,-46+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "features": { + "salt": 1 + }, + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بني", + "expectation": "twodotsverticalbelow-ar=2@259,-523+0|alefMaksura-ar.fina.salt=2+282|dotabove-ar.beh=1@8,294+0|behDotless-ar.medi=1+128|dotbelow-ar=0@81,-46+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "features": { + "salt": 1 + }, + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "جنى", + "expectation": "alefMaksura-ar.fina.tooth=2+9|dotabove-ar.beh=1@-29,270+0|behDotless-ar.medi.round=1+108|dotbelow-ar=0@220,-112+0|_c.hah.beh=0+7|hah-ar.init=0+703", + "features": { + "salt": 1 + }, + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "جنى", + "expectation": "alefMaksura-ar.fina.tooth=2+9|dotabove-ar.beh=1@-29,270+0|behDotless-ar.medi.round=1+108|dotbelow-ar=0@220,-112+0|_c.hah.beh=0+7|hah-ar.init=0+703", + "features": { + "salt": 1 + }, + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "سسي", + "expectation": "twodotsverticalbelow-ar=1@339,-337+0|seen_alefMaksura-ar.fina=1+343|_c.seen.beh=0+0|seen-ar.init=0+378", + "features": { + "salt": 1 + }, + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "سسي", + "expectation": "twodotsverticalbelow-ar=1@339,-337+0|seen_alefMaksura-ar.fina=1+343|_c.seen.beh=0+0|seen-ar.init=0+378", + "features": { + "salt": 1 + }, + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "صسي", + "expectation": "twodotsverticalbelow-ar=1@339,-337+0|seen_alefMaksura-ar.fina=1+343|_c.seen.beh=0+0|sad-ar.init=0+765", + "features": { + "salt": 1 + }, + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "صسي", + "expectation": "twodotsverticalbelow-ar=1@339,-337+0|seen_alefMaksura-ar.fina=1+343|_c.seen.beh=0+0|sad-ar.init=0+765", + "features": { + "salt": 1 + }, + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "طسي", + "expectation": "twodotsverticalbelow-ar=1@339,-337+0|seen_alefMaksura-ar.fina=1+343|_c.seen.beh=0+0|tah-ar.init=0+765", + "features": { + "salt": 1 + }, + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "طسي", + "expectation": "twodotsverticalbelow-ar=1@339,-337+0|seen_alefMaksura-ar.fina=1+343|_c.seen.beh=0+0|tah-ar.init=0+765", + "features": { + "salt": 1 + }, + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "طلى", + "expectation": "alefMaksura-ar.fina.tooth=2+9|lam-ar.medi.round.short=1@2,0+95|_c.seen.beh=0+0|tah-ar.init=0+765", + "features": { + "salt": 1 + }, + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "طلى", + "expectation": "alefMaksura-ar.fina.tooth=2+9|lam-ar.medi.round.short=1@2,0+95|_c.seen.beh=0+0|tah-ar.init=0+765", + "features": { + "salt": 1 + }, + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "عسي", + "expectation": "twodotsverticalbelow-ar=1@339,-337+0|seen_alefMaksura-ar.fina=1+343|_c.ain.init.beh=0+95|ain-ar.init=0@-50,0+640", + "features": { + "salt": 1 + }, + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "عسي", + "expectation": "twodotsverticalbelow-ar=1@339,-337+0|seen_alefMaksura-ar.fina=1+343|_c.ain.init.beh=0+95|ain-ar.init=0@-50,0+640", + "features": { + "salt": 1 + }, + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "على", + "expectation": "alefMaksura-ar.fina.tooth=2+9|lam-ar.medi.round=1+95|_c.ain.init.beh=0+95|ain-ar.init=0@-50,0+640", + "features": { + "salt": 1 + }, + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "على", + "expectation": "alefMaksura-ar.fina.tooth=2+9|lam-ar.medi.round=1+95|_c.ain.init.beh=0+95|ain-ar.init=0@-50,0+640", + "features": { + "salt": 1 + }, + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "فسي", + "expectation": "twodotsverticalbelow-ar=1@339,-337+0|seen_alefMaksura-ar.fina=1+343|dotabove-ar=0@-1,373+0|_c.feh.init.beh=0+174|fehDotless-ar.init=0@-114,0+220", + "features": { + "salt": 1 + }, + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "فسي", + "expectation": "twodotsverticalbelow-ar=1@339,-337+0|seen_alefMaksura-ar.fina=1+343|dotabove-ar=0@-1,373+0|_c.feh.init.beh=0+174|fehDotless-ar.init=0@-114,0+220", + "features": { + "salt": 1 + }, + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "كسي", + "expectation": "twodotsverticalbelow-ar=1@339,-337+0|seen_alefMaksura-ar.fina=1+343|kaf-ar.init.alt=0@-5,0+760", + "features": { + "salt": 1 + }, + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "كسي", + "expectation": "twodotsverticalbelow-ar=1@339,-337+0|seen_alefMaksura-ar.fina=1+343|kaf-ar.init.alt=0@-5,0+760", + "features": { + "salt": 1 + }, + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لسى", + "expectation": "seen_alefMaksura-ar.fina=1+343|_c.seen.beh=0+0|lam-ar.init=0+123", + "features": { + "salt": 1 + }, + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لسى", + "expectation": "seen_alefMaksura-ar.fina=1+343|_c.seen.beh=0+0|lam-ar.init=0+123", + "features": { + "salt": 1 + }, + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لسي", + "expectation": "twodotsverticalbelow-ar=1@339,-337+0|seen_alefMaksura-ar.fina=1+343|_c.seen.beh=0+0|lam-ar.init=0+123", + "features": { + "salt": 1 + }, + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لسي", + "expectation": "twodotsverticalbelow-ar=1@339,-337+0|seen_alefMaksura-ar.fina=1+343|_c.seen.beh=0+0|lam-ar.init=0+123", + "features": { + "salt": 1 + }, + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "ليً", + "expectation": "fathatan-ar=1@-11,199+0|twodotsverticalbelow-ar=1@332,-510+0|alefMaksura-ar.fina.wide.salt=1+267|lam-ar.init=0+123", + "features": { + "salt": 1 + }, + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "ليً", + "expectation": "fathatan-ar=1@-11,199+0|twodotsverticalbelow-ar=1@332,-510+0|alefMaksura-ar.fina.wide.salt=1+267|lam-ar.init=0+123", + "features": { + "salt": 1 + }, + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "مسي", + "expectation": "twodotsverticalbelow-ar=1@339,-337+0|seen_alefMaksura-ar.fina=1+343|_c.seen.beh=0+0|meem-ar.init=0+425", + "features": { + "salt": 1 + }, + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "مسي", + "expectation": "twodotsverticalbelow-ar=1@339,-337+0|seen_alefMaksura-ar.fina=1+343|_c.seen.beh=0+0|meem-ar.init=0+425", + "features": { + "salt": 1 + }, + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "ملى", + "expectation": "alefMaksura-ar.fina.tooth=2+9|lam-ar.medi.round=1+95|_c.seen.beh=0+0|meem-ar.init=0+425", + "features": { + "salt": 1 + }, + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "ملى", + "expectation": "alefMaksura-ar.fina.tooth=2+9|lam-ar.medi.round=1+95|_c.seen.beh=0+0|meem-ar.init=0+425", + "features": { + "salt": 1 + }, + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نسى", + "expectation": "seen_alefMaksura-ar.fina=1+343|dotabove-ar.beh=0@-9,392+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "features": { + "salt": 1 + }, + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نسى", + "expectation": "seen_alefMaksura-ar.fina=1+343|dotabove-ar.beh=0@-9,392+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "features": { + "salt": 1 + }, + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نعى", + "expectation": "alefMaksura-ar.fina.salt=2+282|_c.ain.yeh=1@-20,0+-5|ain-ar.medi=1+220|dotabove-ar.beh=0@-9,392+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "features": { + "salt": 1 + }, + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نعى", + "expectation": "alefMaksura-ar.fina.salt=2+282|_c.ain.yeh=1@-20,0+-5|ain-ar.medi=1+220|dotabove-ar.beh=0@-9,392+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "features": { + "salt": 1 + }, + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نفى", + "expectation": "alefMaksura-ar.fina.salt=2+282|dotabove-ar=1@-59,329+0|_c.feh.medi.meem=1@-36,0+11|fehDotless-ar.medi=1@-71,0+306|dotabove-ar=0@2,299+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", + "features": { + "salt": 1 + }, + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نفى", + "expectation": "alefMaksura-ar.fina.salt=2+282|dotabove-ar=1@-59,329+0|_c.feh.medi.meem=1@-36,0+11|fehDotless-ar.medi=1@-71,0+306|dotabove-ar=0@2,299+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", + "features": { + "salt": 1 + }, + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "هسي", + "expectation": "twodotsverticalbelow-ar=1@339,-337+0|seen_alefMaksura-ar.fina=1+343|_c.feh.medi.beh=0+0|heh-ar.init=0+361", + "features": { + "salt": 1 + }, + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "هسي", + "expectation": "twodotsverticalbelow-ar=1@339,-337+0|seen_alefMaksura-ar.fina=1+343|_c.feh.medi.beh=0+0|heh-ar.init=0+361", + "features": { + "salt": 1 + }, + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "ببسي", + "expectation": "twodotsverticalbelow-ar=2@339,-337+0|seen_alefMaksura-ar.fina=2+343|dotbelow-ar=1@14,-110+0|_c.seen.beh=1+0|behDotless-ar.medi.high=1+128|dotbelow-ar=0@72,-46+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", + "features": { + "salt": 1 + }, + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "ببسي", + "expectation": "twodotsverticalbelow-ar=2@339,-337+0|seen_alefMaksura-ar.fina=2+343|dotbelow-ar=1@14,-110+0|_c.seen.beh=1+0|behDotless-ar.medi.high=1+128|dotbelow-ar=0@72,-46+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", + "features": { + "salt": 1 + }, + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بسسي", + "expectation": "twodotsverticalbelow-ar=2@339,-337+0|seen_alefMaksura-ar.fina=2+343|_c.seen.beh=1+0|seen-ar.medi.low=1+411|dotbelow-ar=0@72,-46+0|_c.seen.beh=0+0|behDotless-ar.init.med=0+130", + "features": { + "salt": 1 + }, + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بسسي", + "expectation": "twodotsverticalbelow-ar=2@339,-337+0|seen_alefMaksura-ar.fina=2+343|_c.seen.beh=1+0|seen-ar.medi.low=1+411|dotbelow-ar=0@72,-46+0|_c.seen.beh=0+0|behDotless-ar.init.med=0+130", + "features": { + "salt": 1 + }, + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بصسي", + "expectation": "twodotsverticalbelow-ar=2@339,-337+0|seen_alefMaksura-ar.fina=2+343|_c.seen.beh=1+0|sad-ar.medi=1+758|dotbelow-ar=0@51,-46+0|behDotless-ar.init=0@-21,0+109", + "features": { + "salt": 1 + }, + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بصسي", + "expectation": "twodotsverticalbelow-ar=2@339,-337+0|seen_alefMaksura-ar.fina=2+343|_c.seen.beh=1+0|sad-ar.medi=1+758|dotbelow-ar=0@51,-46+0|behDotless-ar.init=0@-21,0+109", + "features": { + "salt": 1 + }, + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بطسي", + "expectation": "twodotsverticalbelow-ar=2@339,-337+0|seen_alefMaksura-ar.fina=2+343|_c.seen.beh=1+0|tah-ar.medi=1+758|dotbelow-ar=0@51,-46+0|behDotless-ar.init=0@-21,0+109", + "features": { + "salt": 1 + }, + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بطسي", + "expectation": "twodotsverticalbelow-ar=2@339,-337+0|seen_alefMaksura-ar.fina=2+343|_c.seen.beh=1+0|tah-ar.medi=1+758|dotbelow-ar=0@51,-46+0|behDotless-ar.init=0@-21,0+109", + "features": { + "salt": 1 + }, + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بعسي", + "expectation": "twodotsverticalbelow-ar=2@339,-337+0|seen_alefMaksura-ar.fina=2+343|_c.ain.medi.beh=1+66|ain-ar.medi=1+220|dotbelow-ar=0@81,-46+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "features": { + "salt": 1 + }, + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بعسي", + "expectation": "twodotsverticalbelow-ar=2@339,-337+0|seen_alefMaksura-ar.fina=2+343|_c.ain.medi.beh=1+66|ain-ar.medi=1+220|dotbelow-ar=0@81,-46+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "features": { + "salt": 1 + }, + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بفسي", + "expectation": "twodotsverticalbelow-ar=2@339,-337+0|seen_alefMaksura-ar.fina=2+343|dotabove-ar=1@1,329+0|_c.feh.medi.beh=1+0|fehDotless-ar.medi=1+377|dotbelow-ar=0@72,-46+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", + "features": { + "salt": 1 + }, + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بفسي", + "expectation": "twodotsverticalbelow-ar=2@339,-337+0|seen_alefMaksura-ar.fina=2+343|dotabove-ar=1@1,329+0|_c.feh.medi.beh=1+0|fehDotless-ar.medi=1+377|dotbelow-ar=0@72,-46+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", + "features": { + "salt": 1 + }, + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بكسي", + "expectation": "twodotsverticalbelow-ar=2@339,-337+0|seen_alefMaksura-ar.fina=2+343|kaf-ar.medi.alt=1@-5,0+753|dotbelow-ar=0@51,-46+0|behDotless-ar.init=0@-21,0+109", + "features": { + "salt": 1 + }, + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بكسي", + "expectation": "twodotsverticalbelow-ar=2@339,-337+0|seen_alefMaksura-ar.fina=2+343|kaf-ar.medi.alt=1@-5,0+753|dotbelow-ar=0@51,-46+0|behDotless-ar.init=0@-21,0+109", + "features": { + "salt": 1 + }, + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بلسي", + "expectation": "twodotsverticalbelow-ar=2@339,-337+0|seen_alefMaksura-ar.fina=2+343|_c.seen.beh=1+0|lam-ar.medi=1+125|dotbelow-ar=0@72,-46+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", + "features": { + "salt": 1 + }, + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بلسي", + "expectation": "twodotsverticalbelow-ar=2@339,-337+0|seen_alefMaksura-ar.fina=2+343|_c.seen.beh=1+0|lam-ar.medi=1+125|dotbelow-ar=0@72,-46+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", + "features": { + "salt": 1 + }, + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بمسي", + "expectation": "twodotsverticalbelow-ar=2@339,-337+0|seen_alefMaksura-ar.fina=2+343|_c.seen.beh=1+0|meem-ar.medi=1+380|dotbelow-ar=0@47,-46+0|behDotless-ar.init=0@-25,0+105", + "features": { + "salt": 1 + }, + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بمسي", + "expectation": "twodotsverticalbelow-ar=2@339,-337+0|seen_alefMaksura-ar.fina=2+343|_c.seen.beh=1+0|meem-ar.medi=1+380|dotbelow-ar=0@47,-46+0|behDotless-ar.init=0@-25,0+105", + "features": { + "salt": 1 + }, + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بهسي", + "expectation": "twodotsverticalbelow-ar=2@339,-337+0|seen_alefMaksura-ar.fina=2+343|_c.feh.medi.beh=1+0|heh-ar.medi=1+357|dotbelow-ar=0@72,-46+0|_c.seen.beh=0+0|behDotless-ar.init.med=0+130", + "features": { + "salt": 1 + }, + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بهسي", + "expectation": "twodotsverticalbelow-ar=2@339,-337+0|seen_alefMaksura-ar.fina=2+343|_c.feh.medi.beh=1+0|heh-ar.medi=1+357|dotbelow-ar=0@72,-46+0|_c.seen.beh=0+0|behDotless-ar.init.med=0+130", + "features": { + "salt": 1 + }, + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "عيسى", + "expectation": "seen_alefMaksura-ar.fina=2+343|twodotsverticalbelow-ar=1@14,-137+0|_c.seen.beh=1+0|behDotless-ar.medi.high=1+128|_c.ain.init.beh=0+95|ain-ar.init=0@-50,0+640", + "features": { + "salt": 1 + }, + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "عيسى", + "expectation": "seen_alefMaksura-ar.fina=2+343|twodotsverticalbelow-ar=1@14,-137+0|_c.seen.beh=1+0|behDotless-ar.medi.high=1+128|_c.ain.init.beh=0+95|ain-ar.init=0@-50,0+640", + "features": { + "salt": 1 + }, + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "فلِي", + "expectation": "twodotsverticalbelow-ar=3@259,-523+0|alefMaksura-ar.fina.salt=3+282|kasra-ar=1@48,-111+0|lam-ar.medi=1+125|dotabove-ar=0@-1,373+0|_c.feh.init.beh=0+174|fehDotless-ar.init=0@-114,0+220", + "features": { + "salt": 1 + }, + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "فلِي", + "expectation": "twodotsverticalbelow-ar=3@259,-523+0|alefMaksura-ar.fina.salt=3+282|kasra-ar=1@48,-111+0|lam-ar.medi=1+125|dotabove-ar=0@-1,373+0|_c.feh.init.beh=0+174|fehDotless-ar.init=0@-114,0+220", + "features": { + "salt": 1 + }, + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لسسي", + "expectation": "twodotsverticalbelow-ar=2@339,-337+0|seen_alefMaksura-ar.fina=2+343|_c.seen.beh=1+0|seen-ar.medi=1+401|_c.seen.beh=0+0|lam-ar.init=0+123", + "features": { + "salt": 1 + }, + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لسسي", + "expectation": "twodotsverticalbelow-ar=2@339,-337+0|seen_alefMaksura-ar.fina=2+343|_c.seen.beh=1+0|seen-ar.medi=1+401|_c.seen.beh=0+0|lam-ar.init=0+123", + "features": { + "salt": 1 + }, + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "ممسي", + "expectation": "twodotsverticalbelow-ar=2@339,-337+0|seen_alefMaksura-ar.fina=2+343|_c.seen.beh=1+0|meem-ar.medi.round=1+425|meem-ar.init.round=0+398", + "features": { + "salt": 1 + }, + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "ممسي", + "expectation": "twodotsverticalbelow-ar=2@339,-337+0|seen_alefMaksura-ar.fina=2+343|_c.seen.beh=1+0|meem-ar.medi.round=1+425|meem-ar.init.round=0+398", + "features": { + "salt": 1 + }, + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "يجبي", + "expectation": "twodotsverticalbelow-ar=3@259,-523+0|alefMaksura-ar.fina.salt=3+282|dotbelow-ar=2@9,-110+0|behDotless-ar.medi=2+128|dotbelow-ar=1@220,-112+0|_c.hah.beh=1+7|hah-ar.medi.alt=1+135|twodotsverticalbelow-ar=0@167,158+0|behDotless-ar.init.hah=0@63,5+572", + "features": { + "salt": 1 + }, + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "يجبي", + "expectation": "twodotsverticalbelow-ar=3@259,-523+0|alefMaksura-ar.fina.salt=3+282|dotbelow-ar=2@9,-110+0|behDotless-ar.medi=2+128|dotbelow-ar=1@220,-112+0|_c.hah.beh=1+7|hah-ar.medi.alt=1+135|twodotsverticalbelow-ar=0@167,158+0|behDotless-ar.init.hah=0@63,5+572", + "features": { + "salt": 1 + }, + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "يحيي", + "expectation": "twodotsverticalbelow-ar=3@259,-523+0|alefMaksura-ar.fina.salt=3+282|twodotsverticalbelow-ar=2@9,-137+0|behDotless-ar.medi=2+128|_c.hah.beh=1+7|hah-ar.medi.alt=1+135|twodotsverticalbelow-ar=0@167,158+0|behDotless-ar.init.hah=0@63,5+572", + "features": { + "salt": 1 + }, + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "يحيي", + "expectation": "twodotsverticalbelow-ar=3@259,-523+0|alefMaksura-ar.fina.salt=3+282|twodotsverticalbelow-ar=2@9,-137+0|behDotless-ar.medi=2+128|_c.hah.beh=1+7|hah-ar.medi.alt=1+135|twodotsverticalbelow-ar=0@167,158+0|behDotless-ar.init.hah=0@63,5+572", + "features": { + "salt": 1 + }, + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "النبي", + "expectation": "twodotsverticalbelow-ar=4@259,-523+0|alefMaksura-ar.fina.salt=4+282|dotbelow-ar=3@9,-110+0|behDotless-ar.medi=3+128|dotabove-ar.beh=2@-7,385+0|_c.seen.beh=2+0|behDotless-ar.medi.high=2+128|_c.seen.beh=1+0|lam-ar.init=1+123|alef-ar=0@395,0+1053", + "features": { + "salt": 1 + }, + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "النبي", + "expectation": "twodotsverticalbelow-ar=4@259,-523+0|alefMaksura-ar.fina.salt=4+282|dotbelow-ar=3@9,-110+0|behDotless-ar.medi=3+128|dotabove-ar.beh=2@-7,385+0|_c.seen.beh=2+0|behDotless-ar.medi.high=2+128|_c.seen.beh=1+0|lam-ar.init.short=1+123|alef-ar=0@15,0+673", + "features": { + "salt": 1 + }, + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بببسي", + "expectation": "twodotsverticalbelow-ar=3@339,-337+0|seen_alefMaksura-ar.fina=3+343|dotbelow-ar=2@14,-110+0|_c.seen.beh=2+0|behDotless-ar.medi.high=2+128|dotbelow-ar=1@9,-110+0|_c.seen.beh=1+0|behDotless-ar.medi=1+128|dotbelow-ar=0@81,-46+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "features": { + "salt": 1 + }, + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بببسي", + "expectation": "twodotsverticalbelow-ar=3@339,-337+0|seen_alefMaksura-ar.fina=3+343|dotbelow-ar=2@14,-110+0|_c.seen.beh=2+0|behDotless-ar.medi.high=2+128|dotbelow-ar=1@9,-110+0|_c.seen.beh=1+0|behDotless-ar.medi=1+128|dotbelow-ar=0@81,-46+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "features": { + "salt": 1 + }, + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بيحيي", + "expectation": "twodotsverticalbelow-ar=4@259,-523+0|alefMaksura-ar.fina.salt=4+282|twodotsverticalbelow-ar=3@9,-137+0|behDotless-ar.medi=3+128|_c.hah.beh=2+7|hah-ar.medi=2+133|twodotsverticalbelow-ar=1@404,-35+0|behDotless-ar.medi=1@0,122+128|dotbelow-ar=0@131,126+0|_c.seen.beh=0@0,122+0|behDotless-ar.init.high=0@0,122+340", + "features": { + "salt": 1 + }, + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بيحيي", + "expectation": "twodotsverticalbelow-ar=4@259,-523+0|alefMaksura-ar.fina.salt=4+282|twodotsverticalbelow-ar=3@9,-137+0|behDotless-ar.medi=3+128|_c.hah.beh=2+7|hah-ar.medi=2+133|twodotsverticalbelow-ar=1@404,-35+0|behDotless-ar.medi=1@0,122+128|dotbelow-ar=0@131,126+0|_c.seen.beh=0@0,122+0|behDotless-ar.init.high=0@0,122+340", + "features": { + "salt": 1 + }, + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "ببببسي", + "expectation": "twodotsverticalbelow-ar=4@339,-337+0|seen_alefMaksura-ar.fina=4+343|dotbelow-ar=3@14,-110+0|_c.seen.beh=3+0|behDotless-ar.medi.high=3+128|dotbelow-ar=2@9,-110+0|_c.seen.beh=2+0|behDotless-ar.medi=2+128|dotbelow-ar=1@14,-110+0|_c.seen.beh=1+0|behDotless-ar.medi.high=1+128|dotbelow-ar=0@72,-46+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", + "features": { + "salt": 1 + }, + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "ببببسي", + "expectation": "twodotsverticalbelow-ar=4@339,-337+0|seen_alefMaksura-ar.fina=4+343|dotbelow-ar=3@14,-110+0|_c.seen.beh=3+0|behDotless-ar.medi.high=3+128|dotbelow-ar=2@9,-110+0|_c.seen.beh=2+0|behDotless-ar.medi=2+128|dotbelow-ar=1@14,-110+0|_c.seen.beh=1+0|behDotless-ar.medi.high=1+128|dotbelow-ar=0@72,-46+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", + "features": { + "salt": 1 + }, + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "تخطبني", + "expectation": "twodotsverticalbelow-ar=5@259,-523+0|alefMaksura-ar.fina.salt=5+282|dotabove-ar.beh=4@8,294+0|behDotless-ar.medi=4+128|dotbelow-ar=3@14,-110+0|_c.seen.beh=3+0|behDotless-ar.medi.high=3+128|_c.seen.beh=2+0|tah-ar.medi=2+758|dotabove-ar=1@-22,198+0|_c.hah.dal=1+71|hah-ar.medi.alt=1@-71,0+64|twodotsverticalabove-ar.beh=0@14,407+0|behDotless-ar.init.hah=0@63,5+572", + "features": { + "salt": 1 + }, + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "تخطبني", + "expectation": "twodotsverticalbelow-ar=5@259,-523+0|alefMaksura-ar.fina.salt=5+282|dotabove-ar.beh=4@8,294+0|behDotless-ar.medi=4+128|dotbelow-ar=3@14,-110+0|_c.seen.beh=3+0|behDotless-ar.medi.high=3+128|_c.seen.beh=2+0|tah-ar.medi=2+758|dotabove-ar=1@-22,198+0|_c.hah.dal=1+71|hah-ar.medi.alt=1@-71,0+64|twodotsverticalabove-ar.beh=0@14,407+0|behDotless-ar.init.hah=0@63,5+572", + "features": { + "salt": 1 + }, + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "اطلططحی", + "expectation": "alefMaksura-ar.fina.salt=6+282|_c.ain.yeh=5@-20,0+-5|hah-ar.medi=5@-40,0+93|tah-ar.medi.hah1=4@0,7+758|tah-ar.medi.hah1=3@-9,7+749|lam-ar.medi.hah1=2@-23,7+102|_c.seen.beh=1@0,122+0|tah-ar.init.hah1=1@0,7+765|alef-ar=0@400,0+1058", + "features": { + "salt": 1 + }, + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "اطلططحی", + "expectation": "alefMaksura-ar.fina.salt=6+282|_c.ain.yeh=5@-20,0+-5|hah-ar.medi=5@-40,0+93|tah-ar.medi.hah1=4@0,7+758|tah-ar.medi.hah1=3@-9,7+749|lam-ar.medi.hah1=2@-23,7+102|_c.seen.beh=1@0,122+0|tah-ar.init.hah1=1@0,7+765|alef-ar=0@20,0+678", + "features": { + "salt": 1 + }, + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "الاصطخري", + "expectation": "twodotsverticalbelow-ar=7@259,-436+0|alefMaksura-ar.salt=7+328|reh-ar.fina=6@-25,0+368|dotabove-ar=5@-62,220+0|_c.hah.reh=5@-9,0+102|hah-ar.medi=5@-131,0+2|tah-ar.medi.hah1=4@0,7+758|sad-ar.init=3@-9,122+756|lam_alef-ar=1@400,0+942|alef-ar=0@340,0+998", + "features": { + "salt": 1 + }, + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "الاصطخري", + "expectation": "twodotsverticalbelow-ar=7@259,-436+0|alefMaksura-ar.salt=7+328|reh-ar.fina=6@-25,0+368|dotabove-ar=5@-62,220+0|_c.hah.reh=5@-9,0+102|hah-ar.medi=5@-131,0+2|tah-ar.medi.hah1=4@0,7+758|sad-ar.init=3@-9,122+756|lam_alef-ar=1@20,0+562|alef-ar=0@-40,0+618", + "features": { + "salt": 1 + }, + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بي", + "expectation": "twodotsverticalbelow-ar=1@449,-149+0|yehbarree-ar.fina.baseline=1+297|dotbelow-ar=0@72,64+0|behDotless-ar.init=0@0,110+770", + "features": { + "salt": 2 + }, + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بي", + "expectation": "twodotsverticalbelow-ar=1@449,-149+0|yehbarree-ar.fina.baseline=1+297|dotbelow-ar=0@72,64+0|behDotless-ar.init=0@0,110+770", + "features": { + "salt": 2 + }, + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "حى", + "expectation": "yehbarree-ar.fina.baseline=1+297|_c.ain.yeh=0@-5,110+10|hah-ar.init=0@-40,110+713", + "features": { + "salt": 2 + }, + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "حى", + "expectation": "yehbarree-ar.fina.baseline=1+297|_c.ain.yeh=0@-5,110+10|hah-ar.init=0@-40,110+713", + "features": { + "salt": 2 + }, + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "سى", + "expectation": "seen_alefMaksura-ar=0+346", + "features": { + "salt": 2 + }, + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "سى", + "expectation": "seen_alefMaksura-ar=0+346", + "features": { + "salt": 2 + }, + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "سي", + "expectation": "twodotsverticalbelow-ar=0@330,-337+0|seen_alefMaksura-ar=0+346", + "features": { + "salt": 2 + }, + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "سي", + "expectation": "twodotsverticalbelow-ar=0@330,-337+0|seen_alefMaksura-ar=0+346", + "features": { + "salt": 2 + }, + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "شي", + "expectation": "twodotsverticalbelow-ar=0@330,-337+0|threedotshorizontalabove-ar.3=0@-35,167+0|seen_alefMaksura-ar=0+346", + "features": { + "salt": 2 + }, + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "شي", + "expectation": "twodotsverticalbelow-ar=0@330,-337+0|threedotshorizontalabove-ar.3=0@-35,167+0|seen_alefMaksura-ar=0+346", + "features": { + "salt": 2 + }, + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "عى", + "expectation": "yehbarree-ar.fina.baseline=1+297|_c.ain.yeh=0@-5,110+10|ain-ar.init=0@0,110+760", + "features": { + "salt": 2 + }, + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "عى", + "expectation": "yehbarree-ar.fina.baseline=1+297|_c.ain.yeh=0@-5,110+10|ain-ar.init=0@0,110+760", + "features": { + "salt": 2 + }, + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "عي", + "expectation": "twodotsverticalbelow-ar=1@449,-149+0|yehbarree-ar.fina.baseline=1+297|_c.ain.yeh=0@-5,110+10|ain-ar.init=0@0,110+760", + "features": { + "salt": 2 + }, + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "عي", + "expectation": "twodotsverticalbelow-ar=1@449,-149+0|yehbarree-ar.fina.baseline=1+297|_c.ain.yeh=0@-5,110+10|ain-ar.init=0@0,110+760", + "features": { + "salt": 2 + }, + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "فى", + "expectation": "yehbarree-ar.fina.baseline=1+297|dotabove-ar=0@-67,483+0|fehDotless-ar.init.yeh=0@0,110+768", + "features": { + "salt": 2 + }, + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "فى", + "expectation": "yehbarree-ar.fina.baseline=1+297|dotabove-ar=0@-67,483+0|fehDotless-ar.init.yeh=0@0,110+768", + "features": { + "salt": 2 + }, + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "في", + "expectation": "twodotsverticalbelow-ar=1@449,-149+0|yehbarree-ar.fina.baseline=1+297|dotabove-ar=0@-67,483+0|fehDotless-ar.init.yeh=0@0,110+768", + "features": { + "salt": 2 + }, + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "في", + "expectation": "twodotsverticalbelow-ar=1@449,-149+0|yehbarree-ar.fina.baseline=1+297|dotabove-ar=0@-67,483+0|fehDotless-ar.init.yeh=0@0,110+768", + "features": { + "salt": 2 + }, + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "كي", + "expectation": "twodotsverticalbelow-ar=1@449,-149+0|yehbarree-ar.fina.baseline=1+297|kaf-ar.init.alt=0@-21,110+744", + "features": { + "salt": 2 + }, + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "كي", + "expectation": "twodotsverticalbelow-ar=1@449,-149+0|yehbarree-ar.fina.baseline=1+297|kaf-ar.init.alt=0@-21,110+744", + "features": { + "salt": 2 + }, + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لي", + "expectation": "twodotsverticalbelow-ar=1@449,-149+0|yehbarree-ar.fina.baseline=1+297|lam-ar.init.hah1=0@0,-5+763", + "features": { + "salt": 2 + }, + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لي", + "expectation": "twodotsverticalbelow-ar=1@449,-149+0|yehbarree-ar.fina.baseline=1+297|lam-ar.init.hah1=0@0,-5+763", + "features": { + "salt": 2 + }, + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "علي", + "expectation": "twodotsverticalbelow-ar=2@449,-259+0|yehbarree-ar.fina=2+297|lam-ar.medi=1+125|_c.ain.init.beh=0+95|ain-ar.init=0@-50,0+640", + "features": { + "salt": 2 + }, + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "علي", + "expectation": "twodotsverticalbelow-ar=2@449,-259+0|yehbarree-ar.fina=2+297|lam-ar.medi=1+125|_c.ain.init.beh=0+95|ain-ar.init=0@-50,0+640", + "features": { + "salt": 2 + }, + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "مني", + "expectation": "twodotsverticalbelow-ar=2@449,-259+0|yehbarree-ar.fina=2+297|dotabove-ar.beh=1@8,294+0|behDotless-ar.medi=1+128|_c.seen.beh=0+0|meem-ar.init=0+645", + "features": { + "salt": 2 + }, + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "مني", + "expectation": "twodotsverticalbelow-ar=2@449,-259+0|yehbarree-ar.fina=2+297|dotabove-ar.beh=1@8,294+0|behDotless-ar.medi=1+128|_c.seen.beh=0+0|meem-ar.init=0+645", + "features": { + "salt": 2 + }, + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٥", + "expectation": "endofayah-ar.10=0+1117|ayah.005=0+0", + "direction": "ltr", + "features": { + "salt": 1 + }, + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٥", + "expectation": "endofayah-ar.10=0+1117|ayah.005=0+0", + "direction": "ltr", + "features": { + "salt": 1 + }, + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٠", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٠", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٣", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٣", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٤", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٤", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٥", + "expectation": "endofayah-ar.05=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٥", + "expectation": "endofayah-ar.05=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٦", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٦", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٧", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٧", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٨", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٨", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٩", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٩", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٠", + "expectation": "endofayah-ar.10=0+1117|ayah.010=1+0", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٠", + "expectation": "endofayah-ar.10=0+1117|ayah.010=1+0", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١١", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١١", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٢", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٢", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٣", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٣", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٤", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٤", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٥", + "expectation": "endofayah-ar.05=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٥", + "expectation": "endofayah-ar.05=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٦", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٦", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٧", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٧", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٨", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٨", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٩", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٩", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٠", + "expectation": "endofayah-ar.10=0+1117|ayah.020=1+0", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٠", + "expectation": "endofayah-ar.10=0+1117|ayah.020=1+0", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢١", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢١", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٢", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٢", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٣", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٣", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٤", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٤", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٥", + "expectation": "endofayah-ar.05=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٥", + "expectation": "endofayah-ar.05=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٦", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٦", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٧", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٧", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٨", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٨", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٩", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٩", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٣٠", + "expectation": "endofayah-ar.10=0+1117|ayah.030=1+0", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٣٠", + "expectation": "endofayah-ar.10=0+1117|ayah.030=1+0", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٣١", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٣١", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٣٢", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٣٢", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٣٣", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٣٣", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٣٤", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٣٤", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٣٥", + "expectation": "endofayah-ar.05=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٣٥", + "expectation": "endofayah-ar.05=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٣٦", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٣٦", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٣٧", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٣٧", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٣٨", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٣٨", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٣٩", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٣٩", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٤٠", + "expectation": "endofayah-ar.10=0+1117|ayah.040=1+0", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٤٠", + "expectation": "endofayah-ar.10=0+1117|ayah.040=1+0", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٤١", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٤١", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٤٢", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٤٢", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٤٣", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٤٣", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٤٤", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٤٤", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٤٥", + "expectation": "endofayah-ar.05=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٤٥", + "expectation": "endofayah-ar.05=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٤٦", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٤٦", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٤٧", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٤٧", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٤٨", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٤٨", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٤٩", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٤٩", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٥٠", + "expectation": "endofayah-ar.10=0+1117|ayah.050=1+0", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٥٠", + "expectation": "endofayah-ar.10=0+1117|ayah.050=1+0", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٥١", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٥١", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٥٢", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٥٢", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٥٣", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٥٣", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٥٤", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٥٤", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٥٥", + "expectation": "endofayah-ar.05=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٥٥", + "expectation": "endofayah-ar.05=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٥٦", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٥٦", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٥٧", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٥٧", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٥٨", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٥٨", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٥٩", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٥٩", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٦٠", + "expectation": "endofayah-ar.10=0+1117|ayah.060=1+0", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٦٠", + "expectation": "endofayah-ar.10=0+1117|ayah.060=1+0", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٦١", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٦١", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٦٢", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٦٢", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٦٣", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٦٣", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٦٤", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٦٤", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٦٥", + "expectation": "endofayah-ar.05=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٦٥", + "expectation": "endofayah-ar.05=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٦٦", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٦٦", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٦٧", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٦٧", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٦٨", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٦٨", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٦٩", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٦٩", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٧٠", + "expectation": "endofayah-ar.10=0+1117|ayah.070=1+0", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٧٠", + "expectation": "endofayah-ar.10=0+1117|ayah.070=1+0", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٧١", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٧١", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٧٢", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٧٢", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٧٣", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٧٣", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٧٤", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٧٤", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٧٥", + "expectation": "endofayah-ar.05=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٧٥", + "expectation": "endofayah-ar.05=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٧٦", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٧٦", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٧٧", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٧٧", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٧٨", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٧٨", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٧٩", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٧٩", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٨٠", + "expectation": "endofayah-ar.10=0+1117|ayah.080=1+0", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٨٠", + "expectation": "endofayah-ar.10=0+1117|ayah.080=1+0", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٨١", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٨١", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٨٢", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٨٢", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٨٣", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٨٣", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٨٤", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٨٤", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٨٥", + "expectation": "endofayah-ar.05=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٨٥", + "expectation": "endofayah-ar.05=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٨٦", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٨٦", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٨٧", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٨٧", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٨٨", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٨٨", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٨٩", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٨٩", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٩٠", + "expectation": "endofayah-ar.10=0+1117|ayah.090=1+0", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٩٠", + "expectation": "endofayah-ar.10=0+1117|ayah.090=1+0", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٩١", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٩١", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٩٢", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٩٢", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٩٣", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٩٣", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٩٤", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٩٤", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٩٥", + "expectation": "endofayah-ar.05=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٩٥", + "expectation": "endofayah-ar.05=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٩٦", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٩٦", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٩٧", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٩٧", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٩٨", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٩٨", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٩٩", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٩٩", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٠٠", + "expectation": "endofayah-ar.10=0+1117|ayah.100=1+0", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٠٠", + "expectation": "endofayah-ar.10=0+1117|ayah.100=1+0", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٠١", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٠١", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٠٢", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٠٢", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٠٣", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٠٣", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٠٤", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٠٤", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٠٥", + "expectation": "endofayah-ar.05=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٠٥", + "expectation": "endofayah-ar.05=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٠٦", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٠٦", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٠٧", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٠٧", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٠٨", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٠٨", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٠٩", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٠٩", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١١٠", + "expectation": "endofayah-ar.10=0+1117|ayah.110=1+0", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١١٠", + "expectation": "endofayah-ar.10=0+1117|ayah.110=1+0", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١١١", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١١١", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١١٢", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١١٢", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١١٣", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١١٣", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١١٤", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١١٤", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١١٥", + "expectation": "endofayah-ar.05=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١١٥", + "expectation": "endofayah-ar.05=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١١٦", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١١٦", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١١٧", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١١٧", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١١٨", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١١٨", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١١٩", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١١٩", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٢٠", + "expectation": "endofayah-ar.10=0+1117|ayah.120=1+0", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٢٠", + "expectation": "endofayah-ar.10=0+1117|ayah.120=1+0", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٢١", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٢١", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٢٢", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٢٢", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٢٣", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٢٣", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٢٤", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٢٤", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٢٥", + "expectation": "endofayah-ar.05=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٢٥", + "expectation": "endofayah-ar.05=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٢٦", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٢٦", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٢٧", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٢٧", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٢٨", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٢٨", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٢٩", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٢٩", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٣٠", + "expectation": "endofayah-ar.10=0+1117|ayah.130=1+0", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٣٠", + "expectation": "endofayah-ar.10=0+1117|ayah.130=1+0", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٣١", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٣١", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٣٢", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٣٢", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٣٣", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٣٣", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٣٤", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٣٤", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٣٥", + "expectation": "endofayah-ar.05=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٣٥", + "expectation": "endofayah-ar.05=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٣٦", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٣٦", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٣٧", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٣٧", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٣٨", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٣٨", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٣٩", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٣٩", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٤٠", + "expectation": "endofayah-ar.10=0+1117|ayah.140=1+0", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٤٠", + "expectation": "endofayah-ar.10=0+1117|ayah.140=1+0", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٤١", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٤١", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٤٢", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٤٢", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٤٣", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٤٣", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٤٤", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٤٤", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٤٥", + "expectation": "endofayah-ar.05=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٤٥", + "expectation": "endofayah-ar.05=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٤٦", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٤٦", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٤٧", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٤٧", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٤٨", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٤٨", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٤٩", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٤٩", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٥٠", + "expectation": "endofayah-ar.10=0+1117|ayah.150=1+0", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٥٠", + "expectation": "endofayah-ar.10=0+1117|ayah.150=1+0", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٥١", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٥١", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٥٢", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٥٢", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٥٣", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٥٣", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٥٤", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٥٤", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٥٥", + "expectation": "endofayah-ar.05=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٥٥", + "expectation": "endofayah-ar.05=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٥٦", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٥٦", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٥٧", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٥٧", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٥٨", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٥٨", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٥٩", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٥٩", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٦٠", + "expectation": "endofayah-ar.10=0+1117|ayah.160=1+0", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٦٠", + "expectation": "endofayah-ar.10=0+1117|ayah.160=1+0", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٦١", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٦١", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٦٢", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٦٢", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٦٣", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٦٣", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٦٤", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٦٤", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٦٥", + "expectation": "endofayah-ar.05=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٦٥", + "expectation": "endofayah-ar.05=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٦٦", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٦٦", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٦٧", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٦٧", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٦٨", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٦٨", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٦٩", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٦٩", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٧٠", + "expectation": "endofayah-ar.10=0+1117|ayah.170=1+0", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٧٠", + "expectation": "endofayah-ar.10=0+1117|ayah.170=1+0", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٧١", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٧١", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٧٢", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٧٢", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٧٣", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٧٣", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٧٤", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٧٤", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٧٥", + "expectation": "endofayah-ar.05=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٧٥", + "expectation": "endofayah-ar.05=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٧٦", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٧٦", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٧٧", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٧٧", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٧٨", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٧٨", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٧٩", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٧٩", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٨٠", + "expectation": "endofayah-ar.10=0+1117|ayah.180=1+0", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٨٠", + "expectation": "endofayah-ar.10=0+1117|ayah.180=1+0", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٨١", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٨١", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٨٢", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٨٢", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٨٣", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٨٣", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٨٤", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٨٤", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٨٥", + "expectation": "endofayah-ar.05=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٨٥", + "expectation": "endofayah-ar.05=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٨٦", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٨٦", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٨٧", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٨٧", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٨٨", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٨٨", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٨٩", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٨٩", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٩٠", + "expectation": "endofayah-ar.10=0+1117|ayah.190=1+0", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٩٠", + "expectation": "endofayah-ar.10=0+1117|ayah.190=1+0", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٩١", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٩١", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٩٢", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٩٢", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٩٣", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٩٣", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٩٤", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٩٤", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٩٥", + "expectation": "endofayah-ar.05=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٩٥", + "expectation": "endofayah-ar.05=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٩٦", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٩٦", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٩٧", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٩٧", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٩٨", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٩٨", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٩٩", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝١٩٩", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٠٠", + "expectation": "endofayah-ar.10=0+1117|ayah.200=1+0", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٠٠", + "expectation": "endofayah-ar.10=0+1117|ayah.200=1+0", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٠١", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٠١", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٠٢", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٠٢", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٠٣", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٠٣", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٠٤", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٠٤", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٠٥", + "expectation": "endofayah-ar.05=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٠٥", + "expectation": "endofayah-ar.05=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٠٦", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٠٦", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٠٧", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٠٧", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٠٨", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٠٨", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٠٩", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٠٩", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢١٠", + "expectation": "endofayah-ar.10=0+1117|ayah.210=1+0", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢١٠", + "expectation": "endofayah-ar.10=0+1117|ayah.210=1+0", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢١١", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢١١", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢١٢", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢١٢", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢١٣", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢١٣", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢١٤", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢١٤", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢١٥", + "expectation": "endofayah-ar.05=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢١٥", + "expectation": "endofayah-ar.05=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢١٦", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢١٦", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢١٧", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢١٧", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢١٨", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢١٨", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢١٩", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢١٩", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٢٠", + "expectation": "endofayah-ar.10=0+1117|ayah.220=1+0", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٢٠", + "expectation": "endofayah-ar.10=0+1117|ayah.220=1+0", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٢١", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٢١", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٢٢", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٢٢", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٢٣", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٢٣", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٢٤", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٢٤", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٢٥", + "expectation": "endofayah-ar.05=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٢٥", + "expectation": "endofayah-ar.05=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٢٦", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٢٦", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٢٧", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٢٧", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٢٨", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٢٨", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٢٩", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٢٩", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٣٠", + "expectation": "endofayah-ar.10=0+1117|ayah.230=1+0", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٣٠", + "expectation": "endofayah-ar.10=0+1117|ayah.230=1+0", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٣١", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٣١", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٣٢", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٣٢", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٣٣", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٣٣", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٣٤", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٣٤", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٣٥", + "expectation": "endofayah-ar.05=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٣٥", + "expectation": "endofayah-ar.05=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٣٦", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٣٦", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٣٧", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٣٧", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٣٨", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٣٨", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٣٩", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٣٩", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٤٠", + "expectation": "endofayah-ar.10=0+1117|ayah.240=1+0", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٤٠", + "expectation": "endofayah-ar.10=0+1117|ayah.240=1+0", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٤١", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٤١", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٤٢", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٤٢", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٤٣", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٤٣", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٤٤", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٤٤", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٤٥", + "expectation": "endofayah-ar.05=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٤٥", + "expectation": "endofayah-ar.05=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٤٦", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٤٦", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٤٧", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٤٧", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٤٨", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٤٨", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٤٩", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٤٩", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٥٠", + "expectation": "endofayah-ar.10=0+1117|ayah.250=1+0", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٥٠", + "expectation": "endofayah-ar.10=0+1117|ayah.250=1+0", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٥١", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٥١", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٥٢", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٥٢", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٥٣", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٥٣", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٥٤", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٥٤", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٥٥", + "expectation": "endofayah-ar.05=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٥٥", + "expectation": "endofayah-ar.05=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٥٦", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٥٦", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٥٧", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٥٧", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٥٨", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٥٨", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٥٩", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٥٩", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٦٠", + "expectation": "endofayah-ar.10=0+1117|ayah.260=1+0", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٦٠", + "expectation": "endofayah-ar.10=0+1117|ayah.260=1+0", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٦١", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٦١", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٦٢", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٦٢", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٦٣", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٦٣", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٦٤", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٦٤", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٦٥", + "expectation": "endofayah-ar.05=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٦٥", + "expectation": "endofayah-ar.05=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٦٦", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٦٦", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٦٧", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٦٧", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٦٨", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٦٨", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٦٩", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٦٩", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٧٠", + "expectation": "endofayah-ar.10=0+1117|ayah.270=1+0", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٧٠", + "expectation": "endofayah-ar.10=0+1117|ayah.270=1+0", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٧١", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٧١", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٧٢", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٧٢", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٧٣", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٧٣", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٧٤", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٧٤", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٧٥", + "expectation": "endofayah-ar.05=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٧٥", + "expectation": "endofayah-ar.05=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٧٦", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٧٦", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٧٧", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٧٧", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٧٨", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٧٨", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٧٩", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٧٩", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٨٠", + "expectation": "endofayah-ar.10=0+1117|ayah.280=1+0", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٨٠", + "expectation": "endofayah-ar.10=0+1117|ayah.280=1+0", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٨١", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٨١", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٨٢", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٨٢", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٨٣", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٨٣", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٨٤", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٨٤", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٨٥", + "expectation": "endofayah-ar.05=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٨٥", + "expectation": "endofayah-ar.05=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٨٦", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٨٦", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٨٧", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٨٧", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٨٨", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٨٨", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٨٩", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٨٩", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٩٠", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٩٠", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٩١", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٩١", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٩٢", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٩٢", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٩٣", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٩٣", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٩٤", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٩٤", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٩٥", + "expectation": "endofayah-ar.05=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٩٥", + "expectation": "endofayah-ar.05=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٩٦", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٩٦", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٩٧", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٩٧", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٩٨", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٩٨", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٩٩", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٢٩٩", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٣٠٠", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝٣٠٠", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝100", + "expectation": "endofayah-ar.10=0+1117|ayah.100=1+0", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝100", + "expectation": "endofayah-ar.10=0+1117|ayah.100=1+0", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝101", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝101", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝102", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝102", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝103", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝103", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝104", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝104", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝105", + "expectation": "endofayah-ar.05=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝105", + "expectation": "endofayah-ar.05=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝106", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝106", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝107", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝107", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝108", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝108", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝109", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝109", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝10", + "expectation": "endofayah-ar.10=0+1117|ayah.010=1+0", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝10", + "expectation": "endofayah-ar.10=0+1117|ayah.010=1+0", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝110", + "expectation": "endofayah-ar.10=0+1117|ayah.110=1+0", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝110", + "expectation": "endofayah-ar.10=0+1117|ayah.110=1+0", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝111", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝111", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝112", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝112", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝113", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝113", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝114", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝114", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝115", + "expectation": "endofayah-ar.05=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝115", + "expectation": "endofayah-ar.05=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝116", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝116", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝117", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝117", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝118", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝118", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝119", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝119", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝11", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝11", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝120", + "expectation": "endofayah-ar.10=0+1117|ayah.120=1+0", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝120", + "expectation": "endofayah-ar.10=0+1117|ayah.120=1+0", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝121", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝121", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝122", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝122", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝123", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝123", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝124", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝124", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝125", + "expectation": "endofayah-ar.05=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝125", + "expectation": "endofayah-ar.05=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝126", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝126", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝127", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝127", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝128", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝128", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝129", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝129", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝12", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝12", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝130", + "expectation": "endofayah-ar.10=0+1117|ayah.130=1+0", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝130", + "expectation": "endofayah-ar.10=0+1117|ayah.130=1+0", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝131", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝131", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝132", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", "input": "۝132", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝133", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝133", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝134", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝134", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝135", + "expectation": "endofayah-ar.05=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝135", + "expectation": "endofayah-ar.05=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝136", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝136", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝137", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝137", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝138", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝138", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝139", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝139", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝13", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝13", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝140", + "expectation": "endofayah-ar.10=0+1117|ayah.140=1+0", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝140", + "expectation": "endofayah-ar.10=0+1117|ayah.140=1+0", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝141", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝141", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝142", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝142", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝143", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝143", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝144", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝144", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝145", + "expectation": "endofayah-ar.05=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝145", + "expectation": "endofayah-ar.05=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝146", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝146", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝147", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝147", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝148", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝148", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝149", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝149", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝14", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝14", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝150", + "expectation": "endofayah-ar.10=0+1117|ayah.150=1+0", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝150", + "expectation": "endofayah-ar.10=0+1117|ayah.150=1+0", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝151", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝151", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝152", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝152", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝153", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝153", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝154", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝154", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝155", + "expectation": "endofayah-ar.05=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝155", + "expectation": "endofayah-ar.05=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝156", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝156", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝157", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝157", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝158", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝158", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝159", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝159", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝15", + "expectation": "endofayah-ar.05=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝15", + "expectation": "endofayah-ar.05=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝160", + "expectation": "endofayah-ar.10=0+1117|ayah.160=1+0", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝160", + "expectation": "endofayah-ar.10=0+1117|ayah.160=1+0", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝161", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝161", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝162", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝162", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝163", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝163", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝164", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝164", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝165", + "expectation": "endofayah-ar.05=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝165", + "expectation": "endofayah-ar.05=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝166", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝166", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝167", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝167", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝168", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝168", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝169", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝169", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝16", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝16", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝170", + "expectation": "endofayah-ar.10=0+1117|ayah.170=1+0", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝170", + "expectation": "endofayah-ar.10=0+1117|ayah.170=1+0", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝171", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝171", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝172", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝172", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝173", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝173", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝174", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝174", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝175", + "expectation": "endofayah-ar.05=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝175", + "expectation": "endofayah-ar.05=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝176", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝176", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝177", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝177", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝178", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝178", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝179", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝179", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝17", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝17", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝180", + "expectation": "endofayah-ar.10=0+1117|ayah.180=1+0", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝180", + "expectation": "endofayah-ar.10=0+1117|ayah.180=1+0", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝181", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝181", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝182", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝182", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝183", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝183", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝184", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝184", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝185", + "expectation": "endofayah-ar.05=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝185", + "expectation": "endofayah-ar.05=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝186", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝186", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝187", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝187", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝188", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝188", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝189", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝189", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝18", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝18", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝190", + "expectation": "endofayah-ar.10=0+1117|ayah.190=1+0", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝190", + "expectation": "endofayah-ar.10=0+1117|ayah.190=1+0", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝191", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝191", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝192", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝192", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝193", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝193", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝194", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝194", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝195", + "expectation": "endofayah-ar.05=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝195", + "expectation": "endofayah-ar.05=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝196", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝196", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝197", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝197", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝198", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝198", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝199", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝199", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝19", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝19", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝200", + "expectation": "endofayah-ar.10=0+1117|ayah.200=1+0", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝200", + "expectation": "endofayah-ar.10=0+1117|ayah.200=1+0", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝201", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝201", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝202", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝202", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝203", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝203", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝204", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝204", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝205", + "expectation": "endofayah-ar.05=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝205", + "expectation": "endofayah-ar.05=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝206", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝206", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝207", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝207", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝208", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝208", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝209", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝209", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝20", + "expectation": "endofayah-ar.10=0+1117|ayah.020=1+0", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝20", + "expectation": "endofayah-ar.10=0+1117|ayah.020=1+0", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝210", + "expectation": "endofayah-ar.10=0+1117|ayah.210=1+0", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝210", + "expectation": "endofayah-ar.10=0+1117|ayah.210=1+0", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝211", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝211", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝212", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝212", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝213", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝213", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝214", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝214", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝215", + "expectation": "endofayah-ar.05=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝215", + "expectation": "endofayah-ar.05=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝216", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝216", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝217", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝217", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝218", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝218", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝219", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝219", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝21", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝21", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝220", + "expectation": "endofayah-ar.10=0+1117|ayah.220=1+0", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝220", + "expectation": "endofayah-ar.10=0+1117|ayah.220=1+0", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝221", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝221", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝222", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝222", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝223", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝223", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝224", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝224", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝225", + "expectation": "endofayah-ar.05=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝225", + "expectation": "endofayah-ar.05=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝226", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝226", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝227", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝227", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝228", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝228", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝229", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝229", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝22", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝22", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝230", + "expectation": "endofayah-ar.10=0+1117|ayah.230=1+0", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝230", + "expectation": "endofayah-ar.10=0+1117|ayah.230=1+0", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝231", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝231", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝232", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝232", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝233", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝233", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝234", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝234", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝235", + "expectation": "endofayah-ar.05=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝235", + "expectation": "endofayah-ar.05=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝236", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝236", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝237", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝237", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝238", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝238", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝239", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝239", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝23", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝23", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝240", + "expectation": "endofayah-ar.10=0+1117|ayah.240=1+0", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝240", + "expectation": "endofayah-ar.10=0+1117|ayah.240=1+0", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝241", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝241", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝242", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝242", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝243", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝243", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝244", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝244", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝245", + "expectation": "endofayah-ar.05=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝245", + "expectation": "endofayah-ar.05=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝246", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝246", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝247", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝247", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝248", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝248", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝249", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝249", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝24", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝24", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝250", + "expectation": "endofayah-ar.10=0+1117|ayah.250=1+0", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝250", + "expectation": "endofayah-ar.10=0+1117|ayah.250=1+0", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝251", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝251", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝252", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝252", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝253", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝253", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝254", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝254", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝255", + "expectation": "endofayah-ar.05=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝255", + "expectation": "endofayah-ar.05=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝256", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝256", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝257", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝257", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝258", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝258", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝259", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝259", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝25", + "expectation": "endofayah-ar.05=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝25", + "expectation": "endofayah-ar.05=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝260", + "expectation": "endofayah-ar.10=0+1117|ayah.260=1+0", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝260", + "expectation": "endofayah-ar.10=0+1117|ayah.260=1+0", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝261", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝261", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝262", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝262", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝263", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝263", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝264", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝264", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝265", + "expectation": "endofayah-ar.05=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝265", + "expectation": "endofayah-ar.05=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝266", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝266", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝267", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝267", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝268", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝268", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝269", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝269", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝26", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝26", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝270", + "expectation": "endofayah-ar.10=0+1117|ayah.270=1+0", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝270", + "expectation": "endofayah-ar.10=0+1117|ayah.270=1+0", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝271", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝271", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝272", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝272", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝273", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝273", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝274", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝274", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝275", + "expectation": "endofayah-ar.05=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝275", + "expectation": "endofayah-ar.05=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝276", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝276", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝277", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝277", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝278", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝278", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝279", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝279", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝27", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝27", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝280", + "expectation": "endofayah-ar.10=0+1117|ayah.280=1+0", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝280", + "expectation": "endofayah-ar.10=0+1117|ayah.280=1+0", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝281", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝281", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝282", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝282", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝283", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝283", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝284", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝284", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝285", + "expectation": "endofayah-ar.05=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝285", + "expectation": "endofayah-ar.05=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝286", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝286", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝287", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝287", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝288", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝288", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝289", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝289", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝28", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝28", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝290", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝290", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝291", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝291", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝292", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝292", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝293", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝293", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝294", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝294", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝295", + "expectation": "endofayah-ar.05=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝295", + "expectation": "endofayah-ar.05=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝296", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝296", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝297", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝297", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝298", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝298", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝299", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝299", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝29", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝29", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝300", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝300", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝30", + "expectation": "endofayah-ar.10=0+1117|ayah.030=1+0", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝30", + "expectation": "endofayah-ar.10=0+1117|ayah.030=1+0", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝31", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝31", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝32", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝32", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝33", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝33", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝34", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝34", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝35", + "expectation": "endofayah-ar.05=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝35", + "expectation": "endofayah-ar.05=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝36", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝36", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝37", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝37", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝38", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝38", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝39", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝39", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝40", + "expectation": "endofayah-ar.10=0+1117|ayah.040=1+0", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝40", + "expectation": "endofayah-ar.10=0+1117|ayah.040=1+0", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝41", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝41", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝42", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝42", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝43", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝43", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝44", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝44", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝45", + "expectation": "endofayah-ar.05=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝45", + "expectation": "endofayah-ar.05=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝46", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝46", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝47", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝47", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝48", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝48", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝49", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝49", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝50", + "expectation": "endofayah-ar.10=0+1117|ayah.050=1+0", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝50", + "expectation": "endofayah-ar.10=0+1117|ayah.050=1+0", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝51", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝51", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝52", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝52", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝53", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝53", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝54", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝54", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝55", + "expectation": "endofayah-ar.05=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝55", + "expectation": "endofayah-ar.05=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝56", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝56", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝57", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝57", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝58", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝58", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝59", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝59", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝60", + "expectation": "endofayah-ar.10=0+1117|ayah.060=1+0", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝60", + "expectation": "endofayah-ar.10=0+1117|ayah.060=1+0", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝61", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝61", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝62", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝62", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝63", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝63", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝64", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝64", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝65", + "expectation": "endofayah-ar.05=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝65", + "expectation": "endofayah-ar.05=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝66", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝66", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝67", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝67", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝68", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝68", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝69", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝69", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝70", + "expectation": "endofayah-ar.10=0+1117|ayah.070=1+0", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝70", + "expectation": "endofayah-ar.10=0+1117|ayah.070=1+0", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝71", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝71", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝72", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝72", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝73", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝73", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝74", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝74", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝75", + "expectation": "endofayah-ar.05=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝75", + "expectation": "endofayah-ar.05=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝76", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝76", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝77", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝77", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝78", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝78", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝79", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝79", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝80", + "expectation": "endofayah-ar.10=0+1117|ayah.080=1+0", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝80", + "expectation": "endofayah-ar.10=0+1117|ayah.080=1+0", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝81", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝81", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝82", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝82", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝83", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝83", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝84", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝84", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝85", + "expectation": "endofayah-ar.05=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝85", + "expectation": "endofayah-ar.05=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝86", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝86", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝87", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝87", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝88", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝88", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝89", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝89", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝90", + "expectation": "endofayah-ar.10=0+1117|ayah.090=1+0", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝90", + "expectation": "endofayah-ar.10=0+1117|ayah.090=1+0", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝91", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝91", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝92", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝92", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝93", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝93", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝94", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝94", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝95", + "expectation": "endofayah-ar.05=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝95", + "expectation": "endofayah-ar.05=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝96", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝96", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝97", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝97", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝98", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝98", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝99", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "۝99", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "آ", + "expectation": "madda-ar=0@-138,551+0|alef-ar=0+658", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "آ", + "expectation": "madda-ar=0@-138,551+0|alef-ar=0+658", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "أ", + "expectation": "fatha-ar=0@72,547+0|alef-ar=0+658", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "أ", + "expectation": "fatha-ar=0@72,547+0|alef-ar=0+658", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "ؤ", + "expectation": "hamzaabove-ar=0@-12,209+0|waw-ar=0+509", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "ؤ", + "expectation": "hamzaabove-ar=0@-12,209+0|waw-ar=0+509", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "إ", + "expectation": "kasra-ar=0@297,-177+0|alef-ar=0+658", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "إ", + "expectation": "kasra-ar=0@297,-177+0|alef-ar=0+658", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "ئ", + "expectation": "fatha-ar=0@56,276+0|alefMaksura-ar=0+395", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "ئ", + "expectation": "fatha-ar=0@56,276+0|alefMaksura-ar=0+395", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "ا", + "expectation": "alef-ar=0+658", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "ا", + "expectation": "alef-ar=0+658", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "ب", + "expectation": "dotbelow-ar=0@959,-59+0|behDotless-ar=0+1007", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "ب", + "expectation": "dotbelow-ar=0@959,-59+0|behDotless-ar=0+1007", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "ش", + "expectation": "threedotshorizontalabove-ar.4=0@5,222+0|seen-ar=0+506", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "ش", + "expectation": "threedotshorizontalabove-ar.4=0@5,222+0|seen-ar=0+506", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "ع", + "expectation": "ain-ar=0+982", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "ع", + "expectation": "ain-ar=0+982", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "غ", + "expectation": "dotabove-ar=0@303,256+0|ain-ar=0+982", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "غ", + "expectation": "dotabove-ar=0@303,256+0|ain-ar=0+982", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "ف", + "expectation": "dotabove-ar=0@607,355+0|fehDotless-ar=0+1020", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "ف", + "expectation": "dotabove-ar=0@607,355+0|fehDotless-ar=0+1020", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "أَ", + "expectation": "fatha-ar=0@72,547+0|alef-ar=0+658", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "أَ", + "expectation": "fatha-ar=0@72,547+0|alef-ar=0+658", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "أُ", + "expectation": "damma-ar=0@-138,-15+0|alef-ar=0+658", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "أُ", + "expectation": "damma-ar=0@-138,-15+0|alef-ar=0+658", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "ؤَ", + "expectation": "fatha-ar=0@206,384+0|waw-ar=0+509", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "ؤَ", + "expectation": "fatha-ar=0@206,384+0|waw-ar=0+509", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "ؤُ", + "expectation": "damma-ar=0@-117,-21+0|waw-ar=0+509", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "ؤُ", + "expectation": "damma-ar=0@-117,-21+0|waw-ar=0+509", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "ؤِ", + "expectation": "kasra-ar=0@184,-179+0|waw-ar=0+509", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "ؤِ", + "expectation": "kasra-ar=0@184,-179+0|waw-ar=0+509", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "إِ", + "expectation": "kasra-ar=0@297,-177+0|alef-ar=0+658", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "إِ", + "expectation": "kasra-ar=0@297,-177+0|alef-ar=0+658", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "ئم", + "expectation": "meem-ar.fina=1+567|fatha-ar=0@-43,341+0|behDotless-ar.init=0@-30,0+100", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "ئم", + "expectation": "meem-ar.fina=1+567|fatha-ar=0@-43,341+0|behDotless-ar.init=0@-30,0+100", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "ئُ", + "expectation": "damma-ar=0@-152,-75+0|alefMaksura-ar=0+395", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "ئُ", + "expectation": "damma-ar=0@-152,-75+0|alefMaksura-ar=0+395", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "ئِ", + "expectation": "kasra-ar=0@155,-321+0|alefMaksura-ar=0+395", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "ئِ", + "expectation": "kasra-ar=0@155,-321+0|alefMaksura-ar=0+395", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "اء", + "expectation": "madda-ar=1@-138,551+0|alef-ar=0+658", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "اء", + "expectation": "madda-ar=1@-138,551+0|alef-ar=0+658", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "اَ", + "expectation": "fatha-ar=0@72,547+0|alef-ar=0+658", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "اَ", + "expectation": "fatha-ar=0@72,547+0|alef-ar=0+658", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "اُ", + "expectation": "damma-ar=0@-138,-15+0|alef-ar=0+658", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "اُ", + "expectation": "damma-ar=0@-138,-15+0|alef-ar=0+658", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "با", + "expectation": "alef-ar.fina=1+101|dotbelow-ar=0@72,-46+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "با", + "expectation": "alef-ar.fina=1+101|dotbelow-ar=0@72,-46+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بب", + "expectation": "dotbelow-ar=1@834,-111+0|behDotless-ar.fina=1+984|dotbelow-ar=0@81,-46+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بب", + "expectation": "dotbelow-ar=1@834,-111+0|behDotless-ar.fina=1+984|dotbelow-ar=0@81,-46+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بح", + "expectation": "hah-ar.fina.alt=1+407|dotbelow-ar=0@167,180+0|behDotless-ar.init.hah=0@63,0+572", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بح", + "expectation": "hah-ar.fina.alt=1+407|dotbelow-ar=0@167,180+0|behDotless-ar.init.hah=0@63,0+572", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بش", + "expectation": "threedotshorizontalabove-ar.5=1@-5,125+0|seen-ar.fina.low=1+487|dotbelow-ar=0@72,-46+0|_c.seen.beh=0+0|behDotless-ar.init.med=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بش", + "expectation": "threedotshorizontalabove-ar.5=1@-5,125+0|seen-ar.fina.low=1+487|dotbelow-ar=0@72,-46+0|_c.seen.beh=0+0|behDotless-ar.init.med=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بع", + "expectation": "ain-ar.fina=1+267|dotbelow-ar=0@81,-46+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بع", + "expectation": "ain-ar.fina=1+267|dotbelow-ar=0@81,-46+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بل", + "expectation": "lam-ar.fina=1+177|dotbelow-ar=0@72,-46+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بل", + "expectation": "lam-ar.fina=1+177|dotbelow-ar=0@72,-46+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "به", + "expectation": "heh-ar.fina=1+339|dotbelow-ar=0@81,-46+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "به", + "expectation": "heh-ar.fina=1+339|dotbelow-ar=0@81,-46+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بي", + "expectation": "twodotsverticalbelow-ar=1@386,-339+0|alefMaksura-ar.fina.wide=1+267|dotbelow-ar=0@72,-46+0|behDotless-ar.init=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بي", + "expectation": "twodotsverticalbelow-ar=1@386,-339+0|alefMaksura-ar.fina.wide=1+267|dotbelow-ar=0@72,-46+0|behDotless-ar.init=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "تا", + "expectation": "alef-ar.fina=1+101|twodotsverticalabove-ar.vert=0@4,320+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "تا", + "expectation": "alef-ar.fina=1+101|twodotsverticalabove-ar.vert=0@4,320+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "ثا", + "expectation": "alef-ar.fina=1+101|threedotsupabove-ar.vert=0@12,326+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "ثا", + "expectation": "alef-ar.fina=1+101|threedotsupabove-ar.vert=0@12,326+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "جج", + "expectation": "dotbelow-ar=1@571,-122+0|hah-ar.fina=1+417|dotbelow-ar=0@400,-24+0|hah-ar.init.hah=0@0,115+579", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "جج", + "expectation": "dotbelow-ar=1@571,-122+0|hah-ar.fina=1+417|dotbelow-ar=0@400,-24+0|hah-ar.init.hah=0@0,115+579", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "جح", + "expectation": "hah-ar.fina=1+417|dotbelow-ar=0@400,-24+0|hah-ar.init.hah=0@0,115+579", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "جح", + "expectation": "hah-ar.fina=1+417|dotbelow-ar=0@400,-24+0|hah-ar.init.hah=0@0,115+579", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "حا", + "expectation": "alef-ar.fina=1+101|_c.hah.beh=0+7|hah-ar.init=0+703", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "حا", + "expectation": "alef-ar.fina=1+101|_c.hah.beh=0+7|hah-ar.init=0+703", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "حب", + "expectation": "dotbelow-ar=1@834,-111+0|behDotless-ar.fina=1+984|_c.hah.beh=0+7|hah-ar.init=0+703", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "حب", + "expectation": "dotbelow-ar=1@834,-111+0|behDotless-ar.fina=1+984|_c.hah.beh=0+7|hah-ar.init=0+703", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "حح", + "expectation": "hah-ar.fina=1+417|hah-ar.init.hah=0@0,115+579", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "حح", + "expectation": "hah-ar.fina=1+417|hah-ar.init.hah=0@0,115+579", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "حد", + "expectation": "dal-ar.fina=1+875|_c.hah.dal=0+71|hah-ar.init=0@-71,0+632", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "حد", + "expectation": "dal-ar.fina=1+875|_c.hah.dal=0+71|hah-ar.init=0@-71,0+632", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "حر", + "expectation": "reh-ar.fina=1+393|_c.hah.reh=0@-9,0+102|hah-ar.init=0@-131,0+572", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "حر", + "expectation": "reh-ar.fina=1+393|_c.hah.reh=0@-9,0+102|hah-ar.init=0@-131,0+572", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "حس", + "expectation": "seen-ar.fina.low=1+487|_c.hah.beh=0+7|hah-ar.init=0+703", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "حس", + "expectation": "seen-ar.fina.low=1+487|_c.hah.beh=0+7|hah-ar.init=0+703", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "حض", + "expectation": "dotabove-ar=1@398,247+0|sad-ar.fina=1+876|_c.hah.dal=0+71|hah-ar.init=0@-71,0+632", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "حض", + "expectation": "dotabove-ar=1@398,247+0|sad-ar.fina=1+876|_c.hah.dal=0+71|hah-ar.init=0@-71,0+632", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "حط", + "expectation": "tah-ar.fina=1+798|_c.hah.dal=0+71|hah-ar.init=0@-71,0+632", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "حط", + "expectation": "tah-ar.fina=1+798|_c.hah.dal=0+71|hah-ar.init=0@-71,0+632", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "حع", + "expectation": "ain-ar.fina=1+267|_c.hah.beh=0+7|hah-ar.init=0+703", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "حع", + "expectation": "ain-ar.fina=1+267|_c.hah.beh=0+7|hah-ar.init=0+703", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "حف", + "expectation": "dotabove-ar=1@609,319+0|fehDotless-ar.fina=1+997|_c.hah.beh=0@3,0+10|hah-ar.init=0+703", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "حف", + "expectation": "dotabove-ar=1@609,319+0|fehDotless-ar.fina=1+997|_c.hah.beh=0@3,0+10|hah-ar.init=0+703", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "حق", + "expectation": "twodotsverticalabove-ar=1@-62,265+0|qafDotless-ar.fina=1+373|_c.ain.meem=0@8,0+43|hah-ar.init=0@-39,0+664", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "حق", + "expectation": "twodotsverticalabove-ar=1@-62,265+0|qafDotless-ar.fina=1+373|_c.ain.meem=0@8,0+43|hah-ar.init=0@-39,0+664", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "حك", + "expectation": "kaf-ar.fina=1+889|_c.hah.dal=0+71|hah-ar.init=0@-71,0+632", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "حك", + "expectation": "kaf-ar.fina=1+889|_c.hah.dal=0+71|hah-ar.init=0@-71,0+632", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "حل", + "expectation": "lam-ar.fina=1+177|_c.hah.beh=0+7|hah-ar.init=0+703", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "حل", + "expectation": "lam-ar.fina=1+177|_c.hah.beh=0+7|hah-ar.init=0+703", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "حم", + "expectation": "meem-ar.fina=1+567|_c.ain.meem=0+35|hah-ar.init=0@-39,0+664", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "حم", + "expectation": "meem-ar.fina=1+567|_c.ain.meem=0+35|hah-ar.init=0@-39,0+664", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "حن", + "expectation": "dotabove-ar=1@-3,101+0|noonghunna-ar.fina=1+250|_c.hah.noon=0+-20|hah-ar.init=0@-20,0+683", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "حن", + "expectation": "dotabove-ar=1@-3,101+0|noonghunna-ar.fina=1+250|_c.hah.noon=0+-20|hah-ar.init=0@-20,0+683", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "حه", + "expectation": "heh-ar.fina=1+339|_c.hah.beh=0+7|hah-ar.init=0+703", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "حه", + "expectation": "heh-ar.fina=1+339|_c.hah.beh=0+7|hah-ar.init=0+703", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "حو", + "expectation": "waw-ar.fina.round=1+492|_c.ain.meem=0@-7,0+28|hah-ar.init=0@-39,0+664", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "حو", + "expectation": "waw-ar.fina.round=1+492|_c.ain.meem=0@-7,0+28|hah-ar.init=0@-39,0+664", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "حى", + "expectation": "alefMaksura-ar.fina=1+282|_c.ain.yeh=0@-20,0+-5|hah-ar.init=0@-40,0+663", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "حى", + "expectation": "alefMaksura-ar.fina=1+282|_c.ain.yeh=0@-20,0+-5|hah-ar.init=0@-40,0+663", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "حے", + "expectation": "yehbarree-ar.fina.baseline=1+297|_c.ain.yeh=0@-5,110+10|hah-ar.init=0@-40,110+713", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "حے", + "expectation": "yehbarree-ar.fina.baseline=1+297|_c.ain.yeh=0@-5,110+10|hah-ar.init=0@-40,110+713", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "دَ", + "expectation": "fatha-ar=0@206,280+0|dal-ar=0+882", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "دَ", + "expectation": "fatha-ar=0@206,280+0|dal-ar=0+882", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "سا", + "expectation": "alef-ar.fina=1+101|_c.seen.beh=0+0|seen-ar.init=0+378", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "سا", + "expectation": "alef-ar.fina=1+101|_c.seen.beh=0+0|seen-ar.init=0+378", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "سب", + "expectation": "dotbelow-ar=1@834,-111+0|behDotless-ar.fina=1+984|_c.seen.beh=0+0|seen-ar.init=0+378", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "سب", + "expectation": "dotbelow-ar=1@834,-111+0|behDotless-ar.fina=1+984|_c.seen.beh=0+0|seen-ar.init=0+378", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "سح", + "expectation": "hah-ar.fina=1+417|seen-ar.init=0@0,115+468", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "سح", + "expectation": "hah-ar.fina=1+417|seen-ar.init=0@0,115+468", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "سد", + "expectation": "dal-ar.fina=1+875|seen-ar.init=0@-15,0+363", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "سد", + "expectation": "dal-ar.fina=1+875|seen-ar.init=0@-15,0+363", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "سر", + "expectation": "reh-ar.fina=1+393|seen-ar.init=0+378", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "سر", + "expectation": "reh-ar.fina=1+393|seen-ar.init=0+378", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "سس", + "expectation": "seen-ar.fina=1+510|_c.seen.beh=0+0|seen-ar.init=0+378", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "سس", + "expectation": "seen-ar.fina=1+510|_c.seen.beh=0+0|seen-ar.init=0+378", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "سض", + "expectation": "dotabove-ar=1@398,247+0|sad-ar.fina=1+876|seen-ar.init=0@-15,0+363", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "سض", + "expectation": "dotabove-ar=1@398,247+0|sad-ar.fina=1+876|seen-ar.init=0@-15,0+363", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "سط", + "expectation": "tah-ar.fina=1+798|seen-ar.init=0@-15,0+363", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "سط", + "expectation": "tah-ar.fina=1+798|seen-ar.init=0@-15,0+363", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "سع", + "expectation": "ain-ar.fina=1+267|_c.seen.beh=0+0|seen-ar.init=0+378", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "سع", + "expectation": "ain-ar.fina=1+267|_c.seen.beh=0+0|seen-ar.init=0+378", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "سف", + "expectation": "dotabove-ar=1@609,319+0|fehDotless-ar.fina=1+997|_c.seen.beh=0+0|seen-ar.init=0+378", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "سف", + "expectation": "dotabove-ar=1@609,319+0|fehDotless-ar.fina=1+997|_c.seen.beh=0+0|seen-ar.init=0+378", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "سق", + "expectation": "twodotsverticalabove-ar=1@-62,265+0|qafDotless-ar.fina=1+373|_c.seen.meem=0@7,0+23|seen-ar.init=0@-36,0+342", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "سق", + "expectation": "twodotsverticalabove-ar=1@-62,265+0|qafDotless-ar.fina=1+373|_c.seen.meem=0@7,0+23|seen-ar.init=0@-36,0+342", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "سك", + "expectation": "kaf-ar.fina=1+889|seen-ar.init=0@-15,0+363", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "سك", + "expectation": "kaf-ar.fina=1+889|seen-ar.init=0@-15,0+363", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "سل", + "expectation": "lam-ar.fina=1+177|_c.seen.beh=0+0|seen-ar.init=0+378", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "سل", + "expectation": "lam-ar.fina=1+177|_c.seen.beh=0+0|seen-ar.init=0+378", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "سم", + "expectation": "meem-ar.fina=1+567|_c.seen.meem=0+16|seen-ar.init=0@-36,0+342", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "سم", + "expectation": "meem-ar.fina=1+567|_c.seen.meem=0+16|seen-ar.init=0@-36,0+342", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "سن", + "expectation": "dotabove-ar=1@-3,101+0|noonghunna-ar.fina=1+250|_c.hah.noon=0+-20|seen-ar.init=0+378", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "سن", + "expectation": "dotabove-ar=1@-3,101+0|noonghunna-ar.fina=1+250|_c.hah.noon=0+-20|seen-ar.init=0+378", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "سه", + "expectation": "heh-ar.fina=1+339|_c.seen.beh=0+0|seen-ar.init=0+378", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "سه", + "expectation": "heh-ar.fina=1+339|_c.seen.beh=0+0|seen-ar.init=0+378", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "سو", + "expectation": "waw-ar.fina=1+472|seen-ar.init=0+378", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "سو", + "expectation": "waw-ar.fina=1+472|seen-ar.init=0+378", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "سى", + "expectation": "seen_alefMaksura-ar=0+346", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "سى", + "expectation": "seen_alefMaksura-ar=0+346", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "سي", + "expectation": "twodotsverticalbelow-ar=0@330,-337+0|seen_alefMaksura-ar=0+346", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "سي", + "expectation": "twodotsverticalbelow-ar=0@330,-337+0|seen_alefMaksura-ar=0+346", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "سٍ", + "expectation": "kasratan-ar.alt=0@268,-381+0|seen-ar=0+506", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "سٍ", + "expectation": "kasratan-ar.alt=0@268,-381+0|seen-ar=0+506", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "سِ", + "expectation": "kasra-ar=0@268,-314+0|seen-ar=0+506", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "سِ", + "expectation": "kasra-ar=0@268,-314+0|seen-ar=0+506", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "سے", + "expectation": "yehbarree-ar.fina.baseline=1+297|seen-ar.init=0@-32,110+736", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "سے", + "expectation": "yehbarree-ar.fina.baseline=1+297|seen-ar.init=0@-32,110+736", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "شي", + "expectation": "twodotsverticalbelow-ar=0@330,-337+0|threedotshorizontalabove-ar.3=0@-35,167+0|seen_alefMaksura-ar=0+346", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "شي", + "expectation": "twodotsverticalbelow-ar=0@330,-337+0|threedotshorizontalabove-ar.3=0@-35,167+0|seen_alefMaksura-ar=0+346", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "صح", + "expectation": "hah-ar.fina=1+417|sad-ar.init=0@0,115+765", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "صح", + "expectation": "hah-ar.fina=1+417|sad-ar.init=0@0,115+765", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "صٍ", + "expectation": "kasratan-ar=0@354,-129+0|sad-ar=0+883", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "صٍ", + "expectation": "kasratan-ar=0@354,-129+0|sad-ar=0+883", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "صِ", + "expectation": "kasra-ar=0@421,-129+0|sad-ar=0+883", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "صِ", + "expectation": "kasra-ar=0@421,-129+0|sad-ar=0+883", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "صے", + "expectation": "yehbarree-ar.fina.baseline=1+297|sad-ar.init=0@0,110+765", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "صے", + "expectation": "yehbarree-ar.fina.baseline=1+297|sad-ar.init=0@0,110+765", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "طح", + "expectation": "hah-ar.fina=1+417|tah-ar.init.hah1=0+765", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "طح", + "expectation": "hah-ar.fina=1+417|tah-ar.init.hah1=0+765", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "طً", + "expectation": "fathatan-ar.alt=0@-75,483+0|tah-ar=0+805", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "طً", + "expectation": "fathatan-ar.alt=0@-75,483+0|tah-ar=0+805", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "طَ", + "expectation": "fatha-ar=0@-75,550+0|tah-ar=0+805", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "طَ", + "expectation": "fatha-ar=0@-75,550+0|tah-ar=0+805", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "طے", + "expectation": "yehbarree-ar.fina.baseline=1+297|tah-ar.init.hah1=0@0,-5+765", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "طے", + "expectation": "yehbarree-ar.fina.baseline=1+297|tah-ar.init.hah1=0@0,-5+765", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "عا", + "expectation": "alef-ar.fina=1+101|_c.ain.init.beh=0+95|ain-ar.init=0@-50,0+640", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "عا", + "expectation": "alef-ar.fina=1+101|_c.ain.init.beh=0+95|ain-ar.init=0@-50,0+640", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "عب", + "expectation": "dotbelow-ar=1@834,-111+0|behDotless-ar.fina=1+984|_c.ain.init.beh=0+95|ain-ar.init=0@-50,0+640", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "عب", + "expectation": "dotbelow-ar=1@834,-111+0|behDotless-ar.fina=1+984|_c.ain.init.beh=0+95|ain-ar.init=0@-50,0+640", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "عح", + "expectation": "hah-ar.fina=1+417|ain-ar.init.hah=0@0,115+603", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "عح", + "expectation": "hah-ar.fina=1+417|ain-ar.init.hah=0@0,115+603", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "عد", + "expectation": "dal-ar.fina=1+875|_c.ain.dal=0+47|ain-ar.init=0+690", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "عد", + "expectation": "dal-ar.fina=1+875|_c.ain.dal=0+47|ain-ar.init=0+690", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "عر", + "expectation": "reh-ar.fina=1+393|_c.hah.reh=0@-9,0+102|ain-ar.init=0@-88,0+602", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "عر", + "expectation": "reh-ar.fina=1+393|_c.hah.reh=0@-9,0+102|ain-ar.init=0@-88,0+602", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "عس", + "expectation": "seen-ar.fina=1+510|_c.ain.init.beh=0+95|ain-ar.init=0@-50,0+640", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "عس", + "expectation": "seen-ar.fina=1+510|_c.ain.init.beh=0+95|ain-ar.init=0@-50,0+640", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "عض", + "expectation": "dotabove-ar=1@398,247+0|sad-ar.fina=1+876|_c.ain.dal=0+47|ain-ar.init=0+690", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "عض", + "expectation": "dotabove-ar=1@398,247+0|sad-ar.fina=1+876|_c.ain.dal=0+47|ain-ar.init=0+690", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "عط", + "expectation": "tah-ar.fina=1+798|_c.ain.dal=0+47|ain-ar.init=0+690", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "عط", + "expectation": "tah-ar.fina=1+798|_c.ain.dal=0+47|ain-ar.init=0+690", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "عع", + "expectation": "ain-ar.fina=1+267|_c.ain.init.beh=0+95|ain-ar.init=0@-50,0+640", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "عع", + "expectation": "ain-ar.fina=1+267|_c.ain.init.beh=0+95|ain-ar.init=0@-50,0+640", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "عف", + "expectation": "dotabove-ar=1@609,319+0|fehDotless-ar.fina=1+997|_c.ain.init.beh=0@2,0+97|ain-ar.init=0@-50,0+640", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "عف", + "expectation": "dotabove-ar=1@609,319+0|fehDotless-ar.fina=1+997|_c.ain.init.beh=0@2,0+97|ain-ar.init=0@-50,0+640", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "عق", + "expectation": "twodotsverticalabove-ar=1@-62,265+0|qafDotless-ar.fina=1+373|_c.ain.meem=0@8,0+43|ain-ar.init=0+690", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "عق", + "expectation": "twodotsverticalabove-ar=1@-62,265+0|qafDotless-ar.fina=1+373|_c.ain.meem=0@8,0+43|ain-ar.init=0+690", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "عك", + "expectation": "kaf-ar.fina=1+889|_c.ain.dal=0+47|ain-ar.init=0+690", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "عك", + "expectation": "kaf-ar.fina=1+889|_c.ain.dal=0+47|ain-ar.init=0+690", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "عل", + "expectation": "lam-ar.fina=1+177|_c.ain.init.beh=0+95|ain-ar.init=0@-50,0+640", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "عل", + "expectation": "lam-ar.fina=1+177|_c.ain.init.beh=0+95|ain-ar.init=0@-50,0+640", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "عم", + "expectation": "meem-ar.fina=1+567|_c.ain.meem=0+35|ain-ar.init=0+690", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "عم", + "expectation": "meem-ar.fina=1+567|_c.ain.meem=0+35|ain-ar.init=0+690", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "عن", + "expectation": "dotabove-ar=1@-3,101+0|noonghunna-ar.fina=1+250|_c.hah.noon=0+-20|ain-ar.init=0+690", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "عن", + "expectation": "dotabove-ar=1@-3,101+0|noonghunna-ar.fina=1+250|_c.hah.noon=0+-20|ain-ar.init=0+690", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "عه", + "expectation": "heh-ar.fina=1+339|_c.ain.init.beh=0+95|ain-ar.init=0@-50,0+640", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "عه", + "expectation": "heh-ar.fina=1+339|_c.ain.init.beh=0+95|ain-ar.init=0@-50,0+640", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "عو", + "expectation": "waw-ar.fina.round=1+492|_c.ain.meem=0@-7,0+28|ain-ar.init=0+690", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "عو", + "expectation": "waw-ar.fina.round=1+492|_c.ain.meem=0@-7,0+28|ain-ar.init=0+690", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "عى", + "expectation": "alefMaksura-ar.fina=1+282|_c.ain.yeh=0@-20,0+-5|ain-ar.init=0+690", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "عى", + "expectation": "alefMaksura-ar.fina=1+282|_c.ain.yeh=0@-20,0+-5|ain-ar.init=0+690", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "عي", + "expectation": "twodotsverticalbelow-ar=1@339,-334+0|alefMaksura-ar.fina=1+282|_c.ain.yeh=0@-20,0+-5|ain-ar.init=0+690", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "عي", + "expectation": "twodotsverticalbelow-ar=1@339,-334+0|alefMaksura-ar.fina=1+282|_c.ain.yeh=0@-20,0+-5|ain-ar.init=0+690", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "عے", + "expectation": "yehbarree-ar.fina.baseline=1+297|_c.ain.yeh=0@-5,110+10|ain-ar.init=0@0,110+760", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "عے", + "expectation": "yehbarree-ar.fina.baseline=1+297|_c.ain.yeh=0@-5,110+10|ain-ar.init=0@0,110+760", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "ـد", + "expectation": "dal-ar.fina=1+875|kashida-ar=0+100", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "ـد", + "expectation": "dal-ar.fina=1+875|kashida-ar=0+100", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "فا", + "expectation": "dotabove-ar=0@153,394+0|fehDotless_alef-ar=0+560", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "فا", + "expectation": "dotabove-ar=0@153,394+0|fehDotless_alef-ar=0+560", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "فب", + "expectation": "dotbelow-ar=1@834,-111+0|behDotless-ar.fina=1+984|dotabove-ar=0@-1,373+0|_c.feh.init.beh=0+174|fehDotless-ar.init=0@-114,0+220", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "فب", + "expectation": "dotbelow-ar=1@834,-111+0|behDotless-ar.fina=1+984|dotabove-ar=0@-1,373+0|_c.feh.init.beh=0+174|fehDotless-ar.init=0@-114,0+220", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "فد", + "expectation": "dal-ar.fina=1+875|dotabove-ar=0@-41,373+0|_c.feh.init.dal=0+137|fehDotless-ar.init=0@-117,0+217", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "فد", + "expectation": "dal-ar.fina=1+875|dotabove-ar=0@-41,373+0|_c.feh.init.dal=0+137|fehDotless-ar.init=0@-117,0+217", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "فر", + "expectation": "reh-ar.fina=1+393|dotabove-ar=0@-56,373+0|fehDotless-ar.init.yeh=0@11,0+339", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "فر", + "expectation": "reh-ar.fina=1+393|dotabove-ar=0@-56,373+0|fehDotless-ar.init.yeh=0@11,0+339", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "فس", + "expectation": "seen-ar.fina=1+510|dotabove-ar=0@-1,373+0|_c.feh.init.beh=0+174|fehDotless-ar.init=0@-114,0+220", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "فس", + "expectation": "seen-ar.fina=1+510|dotabove-ar=0@-1,373+0|_c.feh.init.beh=0+174|fehDotless-ar.init=0@-114,0+220", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "فص", + "expectation": "sad-ar.fina=1+876|dotabove-ar=0@-41,373+0|_c.feh.init.dal=0+137|fehDotless-ar.init=0@-117,0+217", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "فص", + "expectation": "sad-ar.fina=1+876|dotabove-ar=0@-41,373+0|_c.feh.init.dal=0+137|fehDotless-ar.init=0@-117,0+217", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "فط", + "expectation": "tah-ar.fina=1+798|dotabove-ar=0@-41,373+0|_c.feh.init.dal=0+137|fehDotless-ar.init=0@-117,0+217", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "فط", + "expectation": "tah-ar.fina=1+798|dotabove-ar=0@-41,373+0|_c.feh.init.dal=0+137|fehDotless-ar.init=0@-117,0+217", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "فع", + "expectation": "ain-ar.fina=1+267|dotabove-ar=0@-1,373+0|_c.feh.init.beh=0+174|fehDotless-ar.init=0@-114,0+220", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "فع", + "expectation": "ain-ar.fina=1+267|dotabove-ar=0@-1,373+0|_c.feh.init.beh=0+174|fehDotless-ar.init=0@-114,0+220", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "فف", + "expectation": "dotabove-ar=1@609,319+0|fehDotless-ar.fina=1+997|dotabove-ar=0@-4,373+0|_c.feh.init.beh=0@-3,0+171|fehDotless-ar.init=0@-114,0+220", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "فف", + "expectation": "dotabove-ar=1@609,319+0|fehDotless-ar.fina=1+997|dotabove-ar=0@-4,373+0|_c.feh.init.beh=0@-3,0+171|fehDotless-ar.init=0@-114,0+220", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "فق", + "expectation": "twodotsverticalabove-ar=1@-62,265+0|qafDotless-ar.fina=1+373|dotabove-ar=0@-32,373+0|_c.feh.init.dal=0@9,0+146|fehDotless-ar.init=0@-117,0+217", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "فق", + "expectation": "twodotsverticalabove-ar=1@-62,265+0|qafDotless-ar.fina=1+373|dotabove-ar=0@-32,373+0|_c.feh.init.dal=0@9,0+146|fehDotless-ar.init=0@-117,0+217", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "فك", + "expectation": "kaf-ar.fina=1+889|dotabove-ar=0@-41,373+0|_c.feh.init.dal=0+137|fehDotless-ar.init=0@-117,0+217", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "فك", + "expectation": "kaf-ar.fina=1+889|dotabove-ar=0@-41,373+0|_c.feh.init.dal=0+137|fehDotless-ar.init=0@-117,0+217", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "فل", + "expectation": "lam-ar.fina=1+177|dotabove-ar=0@-1,373+0|_c.feh.init.beh=0+174|fehDotless-ar.init=0@-114,0+220", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "فل", + "expectation": "lam-ar.fina=1+177|dotabove-ar=0@-1,373+0|_c.feh.init.beh=0+174|fehDotless-ar.init=0@-114,0+220", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "فم", + "expectation": "meem-ar.fina=1+567|dotabove-ar=0@-41,373+0|_c.feh.init.dal=0+137|fehDotless-ar.init=0@-117,0+217", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "فم", + "expectation": "meem-ar.fina=1+567|dotabove-ar=0@-41,373+0|_c.feh.init.dal=0+137|fehDotless-ar.init=0@-117,0+217", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "فن", + "expectation": "dotabove-ar=1@-3,101+0|noonghunna-ar.fina=1+250|dotabove-ar=0@-81,373+0|_c.hah.noon=0+-20|fehDotless-ar.init=0+334", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "فن", + "expectation": "dotabove-ar=1@-3,101+0|noonghunna-ar.fina=1+250|dotabove-ar=0@-81,373+0|_c.hah.noon=0+-20|fehDotless-ar.init=0+334", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "فه", + "expectation": "heh-ar.fina=1+339|dotabove-ar=0@-1,373+0|_c.feh.init.beh=0+174|fehDotless-ar.init=0@-114,0+220", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "فه", + "expectation": "heh-ar.fina=1+339|dotabove-ar=0@-1,373+0|_c.feh.init.beh=0+174|fehDotless-ar.init=0@-114,0+220", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "فو", + "expectation": "waw-ar.fina=1+472|dotabove-ar=0@-19,373+0|_c.feh.init.dal=0@22,0+159|fehDotless-ar.init=0@-117,0+217", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "فو", + "expectation": "waw-ar.fina=1+472|dotabove-ar=0@-19,373+0|_c.feh.init.dal=0@22,0+159|fehDotless-ar.init=0@-117,0+217", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "فى", + "expectation": "alefMaksura-ar.fina.wide=1+267|dotabove-ar=0@-67,373+0|fehDotless-ar.init.yeh=0+328", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "فى", + "expectation": "alefMaksura-ar.fina.wide=1+267|dotabove-ar=0@-67,373+0|fehDotless-ar.init.yeh=0+328", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "في", + "expectation": "twodotsverticalbelow-ar=1@386,-339+0|alefMaksura-ar.fina.wide=1+267|dotabove-ar=0@-67,373+0|fehDotless-ar.init.yeh=0+328", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "في", + "expectation": "twodotsverticalbelow-ar=1@386,-339+0|alefMaksura-ar.fina.wide=1+267|dotabove-ar=0@-67,373+0|fehDotless-ar.init.yeh=0+328", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "فے", + "expectation": "yehbarree-ar.fina.baseline=1+297|dotabove-ar=0@-67,483+0|fehDotless-ar.init.yeh=0@0,110+768", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "فے", + "expectation": "yehbarree-ar.fina.baseline=1+297|dotabove-ar=0@-67,483+0|fehDotless-ar.init.yeh=0@0,110+768", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "قل", + "expectation": "lam-ar.fina=1+177|twodotsverticalabove-ar=0@-31,381+0|_c.feh.init.beh=0+174|fehDotless-ar.init=0@-114,0+220", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "قل", + "expectation": "lam-ar.fina=1+177|twodotsverticalabove-ar=0@-31,381+0|_c.feh.init.beh=0+174|fehDotless-ar.init=0@-114,0+220", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "كا", + "expectation": "alef-ar.fina=1+101|kaf-ar.init.alt=0@-5,0+760", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "كا", + "expectation": "alef-ar.fina=1+101|kaf-ar.init.alt=0@-5,0+760", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "كد", + "expectation": "dal-ar.fina=1+875|kaf-ar.init.alt=0@-10,0+755", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "كد", + "expectation": "dal-ar.fina=1+875|kaf-ar.init.alt=0@-10,0+755", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "كر", + "expectation": "reh-ar.fina=1+393|kaf-ar.init.alt=0@-5,0+760", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "كر", + "expectation": "reh-ar.fina=1+393|kaf-ar.init.alt=0@-5,0+760", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "كم", + "expectation": "meem-ar.fina=1+567|kaf-ar.init.alt=0@-12,0+753", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "كم", + "expectation": "meem-ar.fina=1+567|kaf-ar.init.alt=0@-12,0+753", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "كن", + "expectation": "dotabove-ar=1@-3,101+0|noonghunna-ar.fina=1+250|kaf-ar.init.alt=0@-30,0+735", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "كن", + "expectation": "dotabove-ar=1@-3,101+0|noonghunna-ar.fina=1+250|kaf-ar.init.alt=0@-30,0+735", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "كي", + "expectation": "twodotsverticalbelow-ar=1@339,-334+0|alefMaksura-ar.fina=1+282|kaf-ar.init.alt=0@-36,0+729", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "كي", + "expectation": "twodotsverticalbelow-ar=1@339,-334+0|alefMaksura-ar.fina=1+282|kaf-ar.init.alt=0@-36,0+729", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "كً", + "expectation": "fathatan-ar.alt=0@11,431+0|kaf-ar=0+896", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "كً", + "expectation": "fathatan-ar.alt=0@11,431+0|kaf-ar=0+896", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "كَ", + "expectation": "fatha-ar=0@11,498+0|kaf-ar=0+896", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "كَ", + "expectation": "fatha-ar=0@11,498+0|kaf-ar=0+896", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "كے", + "expectation": "yehbarree-ar.fina.baseline=1+297|kaf-ar.init.alt=0@-21,110+744", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "كے", + "expectation": "yehbarree-ar.fina.baseline=1+297|kaf-ar.init.alt=0@-21,110+744", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لآ", + "expectation": "madda-ar=0@149,565+0|lam_alef-ar=0+542", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لآ", + "expectation": "madda-ar=0@149,565+0|lam_alef-ar=0+542", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لأ", + "expectation": "fatha-ar=0@352,599+0|lam_alef-ar=0+542", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لأ", + "expectation": "fatha-ar=0@352,599+0|lam_alef-ar=0+542", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لح", + "expectation": "hah-ar.fina.alt=1+407|lam-ar.init.hah1.alt=0@63,0+578", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لح", + "expectation": "hah-ar.fina.alt=1+407|lam-ar.init.hah1.alt=0@63,0+578", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لم", + "expectation": "meem-ar.fina=1+567|lam-ar.init=0@-30,0+93", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لم", + "expectation": "meem-ar.fina=1+567|lam-ar.init=0@-30,0+93", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لي", + "expectation": "twodotsverticalbelow-ar=1@386,-339+0|alefMaksura-ar.fina.wide=1+267|lam-ar.init=0+123", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لي", + "expectation": "twodotsverticalbelow-ar=1@386,-339+0|alefMaksura-ar.fina.wide=1+267|lam-ar.init=0+123", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لً", + "expectation": "fathatan-ar.alt=0@-75,483+0|lam-ar=0+186", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لً", + "expectation": "fathatan-ar.alt=0@-75,483+0|lam-ar=0+186", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لٍ", + "expectation": "kasratan-ar.alt=0@171,-277+0|lam-ar=0+186", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لٍ", + "expectation": "kasratan-ar.alt=0@171,-277+0|lam-ar=0+186", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لَ", + "expectation": "fatha-ar=0@-75,550+0|lam-ar=0+186", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لَ", + "expectation": "fatha-ar=0@-75,550+0|lam-ar=0+186", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لِ", + "expectation": "kasra-ar=0@171,-210+0|lam-ar=0+186", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لِ", + "expectation": "kasra-ar=0@171,-210+0|lam-ar=0+186", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لے", + "expectation": "yehbarree-ar.fina.baseline=1+297|lam-ar.init.hah1=0@0,-5+763", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لے", + "expectation": "yehbarree-ar.fina.baseline=1+297|lam-ar.init.hah1=0@0,-5+763", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "ما", + "expectation": "alef-ar.fina=1+101|_c.seen.beh=0+0|meem-ar.init=0+425", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "ما", + "expectation": "alef-ar.fina=1+101|_c.seen.beh=0+0|meem-ar.init=0+425", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "مح", + "expectation": "hah-ar.fina=1+417|meem-ar.init=0@0,115+425", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "مح", + "expectation": "hah-ar.fina=1+417|meem-ar.init=0@0,115+425", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "مر", + "expectation": "reh-ar.fina=1+393|meem-ar.init.round=0@20,0+418", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "مر", + "expectation": "reh-ar.fina=1+393|meem-ar.init.round=0@20,0+418", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "مم", + "expectation": "meem-ar.fina.round=1+554|meem-ar.init.round=0+398", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "مم", + "expectation": "meem-ar.fina.round=1+554|meem-ar.init.round=0+398", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "من", + "expectation": "dotabove-ar=1@-3,101+0|noonghunna-ar.fina=1+250|meem-ar.init.round=0+398", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "من", + "expectation": "dotabove-ar=1@-3,101+0|noonghunna-ar.fina=1+250|meem-ar.init.round=0+398", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "مو", + "expectation": "waw-ar.fina.round=1+492|meem-ar.init.round=0+398", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "مو", + "expectation": "waw-ar.fina.round=1+492|meem-ar.init.round=0+398", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "مے", + "expectation": "yehbarree-ar.fina.baseline=1+297|meem-ar.init=0@0,110+775", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "مے", + "expectation": "yehbarree-ar.fina.baseline=1+297|meem-ar.init=0@0,110+775", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نٍ", + "expectation": "kasratan-ar.alt=0@268,-193+0|dotabove-ar=0@5,191+0|noonghunna-ar=0+295", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نٍ", + "expectation": "kasratan-ar.alt=0@268,-193+0|dotabove-ar=0@5,191+0|noonghunna-ar=0+295", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نِ", + "expectation": "kasra-ar=0@268,-126+0|dotabove-ar=0@5,191+0|noonghunna-ar=0+295", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نِ", + "expectation": "kasra-ar=0@268,-126+0|dotabove-ar=0@5,191+0|noonghunna-ar=0+295", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "هح", + "expectation": "hah-ar.fina=1+417|heh-ar.init=0@0,115+461", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "هح", + "expectation": "hah-ar.fina=1+417|heh-ar.init=0@0,115+461", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "هم", + "expectation": "meem-ar.fina.round=1+554|heh-ar.init.round=0+327", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "هم", + "expectation": "meem-ar.fina.round=1+554|heh-ar.init.round=0+327", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "هن", + "expectation": "dotabove-ar=1@-3,101+0|noonghunna-ar.fina=1+250|heh-ar.init.round=0+327", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "هن", + "expectation": "dotabove-ar=1@-3,101+0|noonghunna-ar.fina=1+250|heh-ar.init.round=0+327", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "هے", + "expectation": "yehbarree-ar.fina.baseline=1+297|heh-ar.init=0@0,110+771", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "هے", + "expectation": "yehbarree-ar.fina.baseline=1+297|heh-ar.init=0@0,110+771", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "وٕ", + "expectation": "kasra-ar=0@184,-179+0|waw-ar=0+509", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "وٕ", + "expectation": "kasra-ar=0@184,-179+0|waw-ar=0+509", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "ىٕ", + "expectation": "kasra-ar=0@155,-321+0|alefMaksura-ar=0+395", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "ىٕ", + "expectation": "kasra-ar=0@155,-321+0|alefMaksura-ar=0+395", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "ىے", + "expectation": "yehbarree-ar.fina.baseline=1+297|behDotless-ar.init=0@0,110+770", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "ىے", + "expectation": "yehbarree-ar.fina.baseline=1+297|behDotless-ar.init=0@0,110+770", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "◌ً", + "expectation": "fathatan-ar=0@148,615+0|dottedCircle=0+578", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "◌ً", + "expectation": "fathatan-ar=0@148,615+0|dottedCircle=0+578", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "◌ٌ", + "expectation": "dammatan-ar=0@-175,148+0|dottedCircle=0+578", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "◌ٌ", + "expectation": "dammatan-ar=0@-175,148+0|dottedCircle=0+578", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "◌ٍ", + "expectation": "kasratan-ar=0@148,-190+0|dottedCircle=0+578", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "◌ٍ", + "expectation": "kasratan-ar=0@148,-190+0|dottedCircle=0+578", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "◌َ", + "expectation": "fatha-ar=0@215,615+0|dottedCircle=0+578", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "◌َ", + "expectation": "fatha-ar=0@215,615+0|dottedCircle=0+578", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "◌ُ", + "expectation": "damma-ar=0@-175,215+0|dottedCircle=0+578", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "◌ُ", + "expectation": "damma-ar=0@-175,215+0|dottedCircle=0+578", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "◌ِ", + "expectation": "kasra-ar=0@215,-190+0|dottedCircle=0+578", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "◌ِ", + "expectation": "kasra-ar=0@215,-190+0|dottedCircle=0+578", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "◌ٓ", + "expectation": "madda-ar=0@-105,429+0|dottedCircle=0+578", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "◌ٓ", + "expectation": "madda-ar=0@-105,429+0|dottedCircle=0+578", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "◌ٔ", + "expectation": "fatha-ar=0@215,615+0|dottedCircle=0+578", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "◌ٔ", + "expectation": "fatha-ar=0@215,615+0|dottedCircle=0+578", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "◌ٕ", + "expectation": "kasra-ar=0@215,-190+0|dottedCircle=0+578", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "◌ٕ", + "expectation": "kasra-ar=0@215,-190+0|dottedCircle=0+578", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لم تحاجون", + "expectation": "dotabove-ar=8@5,191+0|noonghunna-ar=8+295|waw-ar.fina.round=7@400,0+892|dotbelow-ar=6@202,-112+0|_c.ain.meem=6@-7,0+28|hah-ar.init=6@-39,0+664|alef-ar.fina=5@400,0+501|_c.hah.beh=4+7|hah-ar.medi.alt=4+135|twodotsverticalabove-ar.beh=3@14,407+0|behDotless-ar.init.hah=3@63,5+572|space=2+400|meem-ar.fina=1+567|lam-ar.init=0@-30,0+93", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لم تحاجون", + "expectation": "dotabove-ar=8@5,191+0|noonghunna-ar=8+295|waw-ar.fina.round=7@20,0+512|dotbelow-ar=6@202,-112+0|_c.ain.meem=6@-7,0+28|hah-ar.init=6@-39,0+664|alef-ar.fina=5@20,0+121|_c.hah.beh=4+7|hah-ar.medi.alt=4+135|twodotsverticalabove-ar.beh=3@14,407+0|behDotless-ar.init.hah=3@63,5+572|space.mark=2+0|meem-ar.fina=1@20,0+587|lam-ar.init=0@-30,0+93", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "ئفة", + "expectation": "twodotsverticalabove-ar=2@159,377+0|heh-ar.fina=2+339|dotabove-ar=1@1,329+0|_c.feh.medi.beh=1+0|fehDotless-ar.medi=1+377|fatha-ar=0@-13,341+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "ئفة", + "expectation": "twodotsverticalabove-ar=2@159,377+0|heh-ar.fina=2+339|dotabove-ar=1@1,329+0|_c.feh.medi.beh=1+0|fehDotless-ar.medi=1+377|fatha-ar=0@-13,341+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "ئِم", + "expectation": "meem-ar.fina=2+567|kasra-ar=0@25,-111+0|behDotless-ar.init=0@-30,0+100", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "ئِم", + "expectation": "meem-ar.fina=2+567|kasra-ar=0@25,-111+0|behDotless-ar.init=0@-30,0+100", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "اطح", + "expectation": "hah-ar.fina=2+417|tah-ar.init.hah1=1+765|alef-ar=0@400,0+1058", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "اطح", + "expectation": "hah-ar.fina=2+417|tah-ar.init.hah1=1+765|alef-ar=0@20,0+678", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "الح", + "expectation": "hah-ar.fina.alt=2+407|lam-ar.init.hah1.alt=1@63,0+578|alef-ar=0@400,0+1058", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "الح", + "expectation": "hah-ar.fina.alt=2+407|lam-ar.init.hah1.alt=1@63,0+578|alef-ar=0@20,0+678", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "الے", + "expectation": "yehbarree-ar.fina.baseline=2+297|lam-ar.init.hah1=1@0,-5+763|alef-ar=0@395,0+1053", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "الے", + "expectation": "yehbarree-ar.fina.baseline=2+297|lam-ar.init.short=1@0,110+763|alef-ar=0@15,0+673", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "ببا", + "expectation": "alef-ar.fina=2+101|dotbelow-ar=1@9,-110+0|_c.seen.beh=1+0|behDotless-ar.medi=1+128|dotbelow-ar=0@81,-46+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "ببا", + "expectation": "alef-ar.fina=2+101|dotbelow-ar=1@9,-110+0|_c.seen.beh=1+0|behDotless-ar.medi=1+128|dotbelow-ar=0@81,-46+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "ببب", + "expectation": "dotbelow-ar=2@834,-111+0|behDotless-ar.fina=2+984|dotbelow-ar=1@14,-110+0|_c.seen.beh=1+0|behDotless-ar.medi.high=1+128|dotbelow-ar=0@72,-46+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "ببب", + "expectation": "dotbelow-ar=2@834,-111+0|behDotless-ar.fina=2+984|dotbelow-ar=1@14,-110+0|_c.seen.beh=1+0|behDotless-ar.medi.high=1+128|dotbelow-ar=0@72,-46+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "ببن", + "expectation": "dotabove-ar=2@-3,101+0|noonghunna-ar.fina=2+250|dotbelow-ar=1@55,-110+0|behDotless-ar.medi.round=1+108|dotbelow-ar=0@81,-46+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "ببن", + "expectation": "dotabove-ar=2@-3,101+0|noonghunna-ar.fina=2+250|dotbelow-ar=1@55,-110+0|behDotless-ar.medi.round=1+108|dotbelow-ar=0@81,-46+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بسم", + "expectation": "meem-ar.fina=2+567|_c.seen.meem=1+16|seen-ar.medi.low=1@-36,0+375|dotbelow-ar=0@72,-46+0|_c.seen.beh=0+0|behDotless-ar.init.med=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بسم", + "expectation": "meem-ar.fina=2+567|_c.seen.meem=1+16|seen-ar.medi.low=1@-36,0+375|dotbelow-ar=0@72,-46+0|_c.seen.beh=0+0|behDotless-ar.init.med=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بسن", + "expectation": "dotabove-ar=2@-3,101+0|noonghunna-ar.fina=2+250|_c.hah.noon=1+-20|seen-ar.medi.low=1+411|dotbelow-ar=0@72,-46+0|_c.seen.beh=0+0|behDotless-ar.init.med=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بسن", + "expectation": "dotabove-ar=2@-3,101+0|noonghunna-ar.fina=2+250|_c.hah.noon=1+-20|seen-ar.medi.low=1+411|dotbelow-ar=0@72,-46+0|_c.seen.beh=0+0|behDotless-ar.init.med=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بسي", + "expectation": "twodotsverticalbelow-ar=1@339,-337+0|seen_alefMaksura-ar.fina=1+343|dotbelow-ar=0@81,-46+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بسي", + "expectation": "twodotsverticalbelow-ar=1@339,-337+0|seen_alefMaksura-ar.fina=1+343|dotbelow-ar=0@81,-46+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بسٍ", + "expectation": "kasratan-ar.alt=1@268,-383+0|seen-ar.fina.low=1+487|dotbelow-ar=0@72,-46+0|_c.seen.beh=0+0|behDotless-ar.init.med=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بسٍ", + "expectation": "kasratan-ar.alt=1@268,-383+0|seen-ar.fina.low=1+487|dotbelow-ar=0@72,-46+0|_c.seen.beh=0+0|behDotless-ar.init.med=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بشي", + "expectation": "twodotsverticalbelow-ar=1@339,-337+0|threedotshorizontalabove-ar.3=1@-35,167+0|seen_alefMaksura-ar.fina=1+343|dotbelow-ar=0@81,-46+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بشي", + "expectation": "twodotsverticalbelow-ar=1@339,-337+0|threedotshorizontalabove-ar.3=1@-35,167+0|seen_alefMaksura-ar.fina=1+343|dotbelow-ar=0@81,-46+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بعا", + "expectation": "alef-ar.fina=2+101|_c.ain.medi.beh=1+66|ain-ar.medi=1+220|dotbelow-ar=0@81,-46+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بعا", + "expectation": "alef-ar.fina=2+101|_c.ain.medi.beh=1+66|ain-ar.medi=1+220|dotbelow-ar=0@81,-46+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بعد", + "expectation": "dal-ar.fina=2+875|_c.ain.dal=1+47|ain-ar.medi=1+220|dotbelow-ar=0@81,-46+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بعد", + "expectation": "dal-ar.fina=2+875|_c.ain.dal=1+47|ain-ar.medi=1+220|dotbelow-ar=0@81,-46+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بعض", + "expectation": "dotabove-ar=2@398,247+0|sad-ar.fina=2+876|_c.ain.dal=1+47|ain-ar.medi=1+220|dotbelow-ar=0@81,-46+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بعض", + "expectation": "dotabove-ar=2@398,247+0|sad-ar.fina=2+876|_c.ain.dal=1+47|ain-ar.medi=1+220|dotbelow-ar=0@81,-46+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بعن", + "expectation": "dotabove-ar=2@-3,101+0|noonghunna-ar.fina=2+250|_c.hah.noon=1+-20|ain-ar.medi=1+220|dotbelow-ar=0@81,-46+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بعن", + "expectation": "dotabove-ar=2@-3,101+0|noonghunna-ar.fina=2+250|_c.hah.noon=1+-20|ain-ar.medi=1+220|dotbelow-ar=0@81,-46+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بـد", + "expectation": "dal-ar.fina=2+875|kashida-ar=1+100|dotbelow-ar=0@72,-46+0|behDotless-ar.init=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بـد", + "expectation": "dal-ar.fina=2+875|kashida-ar=1+100|dotbelow-ar=0@72,-46+0|behDotless-ar.init=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بـك", + "expectation": "kaf-ar.fina=2+889|kashida-ar=1+100|dotbelow-ar=0@72,-46+0|behDotless-ar.init=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بـك", + "expectation": "kaf-ar.fina=2+889|kashida-ar=1+100|dotbelow-ar=0@72,-46+0|behDotless-ar.init=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بفخ", + "expectation": "dotabove-ar=2@253,213+0|hah-ar.fina=2+417|dotabove-ar=1@1,444+0|fehDotless-ar.medi=1@0,115+377|dotbelow-ar=0@72,29+0|_c.seen.beh=0@0,115+0|behDotless-ar.init=0@0,115+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بفخ", + "expectation": "dotabove-ar=2@253,213+0|hah-ar.fina=2+417|dotabove-ar=1@1,444+0|fehDotless-ar.medi=1@0,115+377|dotbelow-ar=0@72,29+0|_c.seen.beh=0@0,115+0|behDotless-ar.init=0@0,115+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بفن", + "expectation": "dotabove-ar=2@-3,101+0|noonghunna-ar.fina=2+250|dotabove-ar=1@-44,329+0|_c.hah.noon=1+-20|fehDotless-ar.medi=1@-25,0+352|dotbelow-ar=0@72,-46+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بفن", + "expectation": "dotabove-ar=2@-3,101+0|noonghunna-ar.fina=2+250|dotabove-ar=1@-44,329+0|_c.hah.noon=1+-20|fehDotless-ar.medi=1@-25,0+352|dotbelow-ar=0@72,-46+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بكم", + "expectation": "meem-ar.fina=2+567|kaf-ar.medi.alt=1@-12,0+746|dotbelow-ar=0@51,-46+0|behDotless-ar.init=0@-21,0+109", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بكم", + "expectation": "meem-ar.fina=2+567|kaf-ar.medi.alt=1@-12,0+746|dotbelow-ar=0@51,-46+0|behDotless-ar.init=0@-21,0+109", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بلا", + "expectation": "lam_alef-ar.fina=1+510|dotbelow-ar=0@72,-46+0|behDotless-ar.init=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بلا", + "expectation": "lam_alef-ar.fina=1+510|dotbelow-ar=0@72,-46+0|behDotless-ar.init=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بلٍ", + "expectation": "kasratan-ar.alt=1@171,-277+0|lam-ar.fina=1+177|dotbelow-ar=0@72,-46+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بلٍ", + "expectation": "kasratan-ar.alt=1@171,-277+0|lam-ar.fina=1+177|dotbelow-ar=0@72,-46+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بلِ", + "expectation": "kasra-ar=1@171,-210+0|lam-ar.fina=1+177|dotbelow-ar=0@72,-46+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بلِ", + "expectation": "kasra-ar=1@171,-210+0|lam-ar.fina=1+177|dotbelow-ar=0@72,-46+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بما", + "expectation": "alef-ar.fina=2+101|_c.seen.beh=1+0|meem-ar.medi=1+380|dotbelow-ar=0@47,-46+0|behDotless-ar.init=0@-25,0+105", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بما", + "expectation": "alef-ar.fina=2+101|_c.seen.beh=1+0|meem-ar.medi=1+380|dotbelow-ar=0@47,-46+0|behDotless-ar.init=0@-25,0+105", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بمح", + "expectation": "hah-ar.fina=2+417|meem-ar.medi=1@0,115+380|dotbelow-ar=0@47,29+0|behDotless-ar.init=0@-25,115+105", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بمح", + "expectation": "hah-ar.fina=2+417|meem-ar.medi=1@0,115+380|dotbelow-ar=0@47,29+0|behDotless-ar.init=0@-25,115+105", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بمن", + "expectation": "dotabove-ar=2@-3,101+0|noonghunna-ar.fina=2+250|meem-ar.medi.round2=1+398|dotbelow-ar=0@72,-46+0|behDotless-ar.init=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بمن", + "expectation": "dotabove-ar=2@-3,101+0|noonghunna-ar.fina=2+250|meem-ar.medi.round2=1+398|dotbelow-ar=0@72,-46+0|behDotless-ar.init=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بنم", + "expectation": "meem-ar.fina.round=2+554|dotabove-ar.beh=1@-29,270+0|behDotless-ar.medi.round=1+108|dotbelow-ar=0@81,-46+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بنم", + "expectation": "meem-ar.fina.round=2+554|dotabove-ar.beh=1@-29,270+0|behDotless-ar.medi.round=1+108|dotbelow-ar=0@81,-46+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بني", + "expectation": "twodotsverticalbelow-ar=2@339,-334+0|alefMaksura-ar.fina=2+282|dotabove-ar.beh=1@8,294+0|behDotless-ar.medi=1+128|dotbelow-ar=0@81,-46+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بني", + "expectation": "twodotsverticalbelow-ar=2@339,-334+0|alefMaksura-ar.fina=2+282|dotabove-ar.beh=1@8,294+0|behDotless-ar.medi=1+128|dotbelow-ar=0@81,-46+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بنٍ", + "expectation": "kasratan-ar.alt=1@260,-361+0|dotabove-ar=1@-3,101+0|noonghunna-ar.fina=1+250|dotbelow-ar=0@38,-46+0|behDotless-ar.init=0@-34,0+96", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بنٍ", + "expectation": "kasratan-ar.alt=1@260,-361+0|dotabove-ar=1@-3,101+0|noonghunna-ar.fina=1+250|dotbelow-ar=0@38,-46+0|behDotless-ar.init=0@-34,0+96", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بهح", + "expectation": "hah-ar.fina=2+417|heh-ar.medi=1@0,115+357|dotbelow-ar=0@122,119+0|_c.seen.beh=0@0,115+0|behDotless-ar.init.med=0@0,115+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بهح", + "expectation": "hah-ar.fina=2+417|heh-ar.medi=1@0,115+357|dotbelow-ar=0@122,119+0|_c.seen.beh=0@0,115+0|behDotless-ar.init.med=0@0,115+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بهم", + "expectation": "meem-ar.fina.round=2+554|heh-ar.medi.round=1+323|dotbelow-ar=0@72,-46+0|_c.seen.beh=0+0|behDotless-ar.init.med=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بهم", + "expectation": "meem-ar.fina.round=2+554|heh-ar.medi.round=1+323|dotbelow-ar=0@72,-46+0|_c.seen.beh=0+0|behDotless-ar.init.med=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بهن", + "expectation": "dotabove-ar=2@-3,101+0|noonghunna-ar.fina=2+250|heh-ar.medi.round=1+323|dotbelow-ar=0@72,-46+0|_c.seen.beh=0+0|behDotless-ar.init.med=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بهن", + "expectation": "dotabove-ar=2@-3,101+0|noonghunna-ar.fina=2+250|heh-ar.medi.round=1+323|dotbelow-ar=0@72,-46+0|_c.seen.beh=0+0|behDotless-ar.init.med=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بهو", + "expectation": "waw-ar.fina.round=2+492|heh-ar.medi.round=1+323|dotbelow-ar=0@72,-46+0|_c.seen.beh=0+0|behDotless-ar.init.med=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بهو", + "expectation": "waw-ar.fina.round=2+492|heh-ar.medi.round=1+323|dotbelow-ar=0@72,-46+0|_c.seen.beh=0+0|behDotless-ar.init.med=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بيت", + "expectation": "twodotsverticalabove-ar=2@803,264+0|behDotless-ar.fina=2+984|twodotsverticalbelow-ar=1@14,-137+0|_c.seen.beh=1+0|behDotless-ar.medi.high=1+128|dotbelow-ar=0@72,-46+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بيت", + "expectation": "twodotsverticalabove-ar=2@803,264+0|behDotless-ar.fina=2+984|twodotsverticalbelow-ar=1@14,-137+0|_c.seen.beh=1+0|behDotless-ar.medi.high=1+128|dotbelow-ar=0@72,-46+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بين", + "expectation": "dotabove-ar=2@-3,101+0|noonghunna-ar.fina=2+250|twodotsverticalbelow-ar=1@55,-137+0|behDotless-ar.medi.round=1+108|dotbelow-ar=0@81,-46+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بين", + "expectation": "dotabove-ar=2@-3,101+0|noonghunna-ar.fina=2+250|twodotsverticalbelow-ar=1@55,-137+0|behDotless-ar.medi.round=1+108|dotbelow-ar=0@81,-46+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بُل", + "expectation": "lam-ar.fina=2+177|damma-ar=0@-63,98+0|dotbelow-ar=0@72,-46+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بُل", + "expectation": "lam-ar.fina=2+177|damma-ar=0@-63,98+0|dotbelow-ar=0@72,-46+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "تبع", + "expectation": "ain-ar.fina=2+267|dotbelow-ar=1@9,-110+0|_c.seen.beh=1+0|behDotless-ar.medi=1+128|twodotsverticalabove-ar.beh=0@-39,400+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "تبع", + "expectation": "ain-ar.fina=2+267|dotbelow-ar=1@9,-110+0|_c.seen.beh=1+0|behDotless-ar.medi=1+128|twodotsverticalabove-ar.beh=0@-39,400+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "تتا", + "expectation": "alef-ar.fina=2+101|twodotsverticalabove-ar.vert.beh=1@5,298+0|_c.seen.beh=1+0|behDotless-ar.medi=1+128|twodotsverticalabove-ar.beh=0@-39,400+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "تتا", + "expectation": "alef-ar.fina=2+101|twodotsverticalabove-ar.vert.beh=1@5,298+0|_c.seen.beh=1+0|behDotless-ar.medi=1+128|twodotsverticalabove-ar.beh=0@-39,400+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "تعا", + "expectation": "alef-ar.fina=2+101|_c.ain.medi.beh=1+66|ain-ar.medi=1+220|twodotsverticalabove-ar.beh=0@-39,400+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "تعا", + "expectation": "alef-ar.fina=2+101|_c.ain.medi.beh=1+66|ain-ar.medi=1+220|twodotsverticalabove-ar.beh=0@-39,400+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "تعب", + "expectation": "dotbelow-ar=2@834,-111+0|behDotless-ar.fina=2+984|_c.ain.medi.beh=1+66|ain-ar.medi=1+220|twodotsverticalabove-ar.beh=0@-39,400+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "تعب", + "expectation": "dotbelow-ar=2@834,-111+0|behDotless-ar.fina=2+984|_c.ain.medi.beh=1+66|ain-ar.medi=1+220|twodotsverticalabove-ar.beh=0@-39,400+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "تعل", + "expectation": "lam-ar.fina=2+177|_c.ain.medi.beh=1+66|ain-ar.medi=1+220|twodotsverticalabove-ar.beh=0@-39,400+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "تعل", + "expectation": "lam-ar.fina=2+177|_c.ain.medi.beh=1+66|ain-ar.medi=1+220|twodotsverticalabove-ar.beh=0@-39,400+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "ثثا", + "expectation": "alef-ar.fina=2+101|threedotsupabove-ar.vert.beh=1@5,298+0|_c.seen.beh=1+0|behDotless-ar.medi=1+128|threedotsupabove-ar.beh=0@-69,400+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "ثثا", + "expectation": "alef-ar.fina=2+101|threedotsupabove-ar.vert.beh=1@5,298+0|_c.seen.beh=1+0|behDotless-ar.medi=1+128|threedotsupabove-ar.beh=0@-69,400+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "ثغر", + "expectation": "reh-ar.fina=2+393|dotabove-ar=1@-67,223+0|_c.ain.medi.reh=1+7|ain-ar.medi=1+220|threedotsupabove-ar.beh=0@-69,400+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "ثغر", + "expectation": "reh-ar.fina=2+393|dotabove-ar=1@-67,223+0|_c.ain.medi.reh=1+7|ain-ar.medi=1+220|threedotsupabove-ar.beh=0@-69,400+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "ججا", + "expectation": "alef-ar.fina=2+101|dotbelow-ar=1@220,-112+0|_c.hah.beh=1+7|hah-ar.medi=1+133|dotbelow-ar=0@400,-17+0|hah-ar.init.hah=0@0,122+579", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "ججا", + "expectation": "alef-ar.fina=2+101|dotbelow-ar=1@220,-112+0|_c.hah.beh=1+7|hah-ar.medi=1+133|dotbelow-ar=0@400,-17+0|hah-ar.init.hah=0@0,122+579", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "جلح", + "expectation": "hah-ar.fina=2+417|lam-ar.medi.hah1=1+125|dotbelow-ar=0@270,-17+0|_c.hah.beh=0@0,115+7|hah-ar.init=0@0,115+703", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "جلح", + "expectation": "hah-ar.fina=2+417|lam-ar.medi.hah1=1+125|dotbelow-ar=0@270,-17+0|_c.hah.beh=0@0,115+7|hah-ar.init=0@0,115+703", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "جنح", + "expectation": "hah-ar.fina=2+417|dotabove-ar.beh=1@8,409+0|behDotless-ar.medi=1@0,115+128|dotbelow-ar=0@270,-17+0|_c.hah.beh=0@0,115+7|hah-ar.init=0@0,115+703", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "جنح", + "expectation": "hah-ar.fina=2+417|dotabove-ar.beh=1@8,409+0|behDotless-ar.medi=1@0,115+128|dotbelow-ar=0@270,-17+0|_c.hah.beh=0@0,115+7|hah-ar.init=0@0,115+703", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "جنى", + "expectation": "alefMaksura-ar.fina.tooth=2+9|dotabove-ar.beh=1@-29,270+0|behDotless-ar.medi.round=1+108|dotbelow-ar=0@220,-112+0|_c.hah.beh=0+7|hah-ar.init=0+703", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "جنى", + "expectation": "alefMaksura-ar.fina.tooth=2+9|dotabove-ar.beh=1@-29,270+0|behDotless-ar.medi.round=1+108|dotbelow-ar=0@220,-112+0|_c.hah.beh=0+7|hah-ar.init=0+703", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "حال", + "expectation": "lam-ar=2+186|alef-ar.fina=1@400,0+501|_c.hah.beh=0+7|hah-ar.init=0+703", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "حال", + "expectation": "lam-ar.short=2+186|alef-ar.fina=1@20,0+121|_c.hah.beh=0+7|hah-ar.init=0+703", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "حبا", + "expectation": "alef-ar.fina=2+101|dotbelow-ar=1@9,-110+0|_c.seen.beh=1+0|behDotless-ar.medi=1+128|_c.hah.beh=0+7|hah-ar.init=0+703", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "حبا", + "expectation": "alef-ar.fina=2+101|dotbelow-ar=1@9,-110+0|_c.seen.beh=1+0|behDotless-ar.medi=1+128|_c.hah.beh=0+7|hah-ar.init=0+703", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "حبب", + "expectation": "dotbelow-ar=2@834,-111+0|behDotless-ar.fina=2+984|dotbelow-ar=1@14,-110+0|_c.seen.beh=1+0|behDotless-ar.medi.high=1+128|_c.hah.beh=0+7|hah-ar.init=0+703", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "حبب", + "expectation": "dotbelow-ar=2@834,-111+0|behDotless-ar.fina=2+984|dotbelow-ar=1@14,-110+0|_c.seen.beh=1+0|behDotless-ar.medi.high=1+128|_c.hah.beh=0+7|hah-ar.init=0+703", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "حبر", + "expectation": "reh-ar.fina=2+393|dotbelow-ar=1@9,-140+0|behDotless-ar.medi=1+128|_c.hah.beh=0+7|hah-ar.init=0+703", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "حبر", + "expectation": "reh-ar.fina=2+393|dotbelow-ar=1@9,-140+0|behDotless-ar.medi=1+128|_c.hah.beh=0+7|hah-ar.init=0+703", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "حبه", + "expectation": "heh-ar.fina=2+339|dotbelow-ar=1@17,-110+0|_c.seen.beh=1+0|behDotless-ar.medi.med=1+128|_c.hah.beh=0+7|hah-ar.init=0+703", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "حبه", + "expectation": "heh-ar.fina=2+339|dotbelow-ar=1@17,-110+0|_c.seen.beh=1+0|behDotless-ar.medi.med=1+128|_c.hah.beh=0+7|hah-ar.init=0+703", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "حبو", + "expectation": "waw-ar.fina=2+472|dotbelow-ar=1@-1,-140+0|behDotless-ar.medi=1@-10,0+118|_c.hah.beh=0+7|hah-ar.init=0+703", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "حبو", + "expectation": "waw-ar.fina=2+472|dotbelow-ar=1@-1,-140+0|behDotless-ar.medi=1@-10,0+118|_c.hah.beh=0+7|hah-ar.init=0+703", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "حبى", + "expectation": "alefMaksura-ar.fina=2+282|dotbelow-ar=1@79,-110+0|behDotless-ar.medi=1+128|_c.hah.beh=0+7|hah-ar.init=0+703", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "حبى", + "expectation": "alefMaksura-ar.fina=2+282|dotbelow-ar=1@79,-110+0|behDotless-ar.medi=1+128|_c.hah.beh=0+7|hah-ar.init=0+703", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "حتى", + "expectation": "alefMaksura-ar.fina.tooth=2+9|twodotsverticalabove-ar.beh=1@-59,278+0|behDotless-ar.medi.round=1+108|_c.hah.beh=0+7|hah-ar.init=0+703", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "حتى", + "expectation": "alefMaksura-ar.fina.tooth=2+9|twodotsverticalabove-ar.beh=1@-59,278+0|behDotless-ar.medi.round=1+108|_c.hah.beh=0+7|hah-ar.init=0+703", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "حجج", + "expectation": "dotbelow-ar=2@571,-122+0|hah-ar.fina=2+417|dotbelow-ar=1@401,-25+0|hah-ar.medi.hah=1@0,115+109|hah-ar.init.hah=0@0,237+579", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "حجج", + "expectation": "dotbelow-ar=2@571,-122+0|hah-ar.fina=2+417|dotbelow-ar=1@401,-25+0|hah-ar.medi.hah=1@0,115+109|hah-ar.init.hah=0@0,237+579", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "حسا", + "expectation": "alef-ar.fina=2+101|_c.seen.beh=1+0|seen-ar.medi.low=1+411|_c.hah.beh=0+7|hah-ar.init=0+703", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "حسا", + "expectation": "alef-ar.fina=2+101|_c.seen.beh=1+0|seen-ar.medi.low=1+411|_c.hah.beh=0+7|hah-ar.init=0+703", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "حضا", + "expectation": "alef-ar.fina=2+101|dotabove-ar=1@310,247+0|_c.seen.beh=1+0|sad-ar.medi=1+758|_c.hah.dal=0+71|hah-ar.init=0@-71,0+632", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "حضا", + "expectation": "alef-ar.fina=2+101|dotabove-ar=1@310,247+0|_c.seen.beh=1+0|sad-ar.medi=1+758|_c.hah.dal=0+71|hah-ar.init=0@-71,0+632", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "حطا", + "expectation": "alef-ar.fina.short=2+102|_c.seen.beh=1+0|tah-ar.medi=1+758|_c.hah.dal=0+71|hah-ar.init=0@-71,0+632", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "حطا", + "expectation": "alef-ar.fina.short=2+102|_c.seen.beh=1+0|tah-ar.medi=1+758|_c.hah.dal=0+71|hah-ar.init=0@-71,0+632", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "حعا", + "expectation": "alef-ar.fina=2+101|_c.ain.medi.beh=1+66|ain-ar.medi=1+220|_c.hah.beh=0+7|hah-ar.init=0+703", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "حعا", + "expectation": "alef-ar.fina=2+101|_c.ain.medi.beh=1+66|ain-ar.medi=1+220|_c.hah.beh=0+7|hah-ar.init=0+703", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "حكا", + "expectation": "alef-ar.fina=2+101|kaf-ar.medi.alt=1@-5,0+753|_c.hah.dal=0+71|hah-ar.init=0@-71,0+632", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "حكا", + "expectation": "alef-ar.fina=2+101|kaf-ar.medi.alt=1@-5,0+753|_c.hah.dal=0+71|hah-ar.init=0@-71,0+632", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "حلا", + "expectation": "lam_alef-ar.fina=1+510|hah-ar.init=0@-57,0+646", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "حلا", + "expectation": "lam_alef-ar.fina=1+510|hah-ar.init=0@-57,0+646", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "حلن", + "expectation": "dotabove-ar=2@-3,101+0|noonghunna-ar.fina=2+250|lam-ar.medi.round=1+95|_c.hah.beh=0+7|hah-ar.init=0+703", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "حلن", + "expectation": "dotabove-ar=2@-3,101+0|noonghunna-ar.fina=2+250|lam-ar.medi.round=1+95|_c.hah.beh=0+7|hah-ar.init=0+703", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "حما", + "expectation": "alef-ar.fina=2+101|_c.seen.beh=1+0|meem-ar.medi=1+380|_c.ain.meem=0@13,0+48|hah-ar.init=0@-39,0+664", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "حما", + "expectation": "alef-ar.fina=2+101|_c.seen.beh=1+0|meem-ar.medi=1+380|_c.ain.meem=0@13,0+48|hah-ar.init=0@-39,0+664", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "حمم", + "expectation": "meem-ar.fina.round=2+554|meem-ar.medi.round2=1+398|_c.ain.meem=0@8,0+43|hah-ar.init=0@-39,0+664", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "حمم", + "expectation": "meem-ar.fina.round=2+554|meem-ar.medi.round2=1+398|_c.ain.meem=0@8,0+43|hah-ar.init=0@-39,0+664", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "حها", + "expectation": "alef-ar.fina=2+101|_c.feh.medi.beh=1+0|heh-ar.medi=1+357|_c.hah.beh=0+7|hah-ar.init=0+703", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "حها", + "expectation": "alef-ar.fina=2+101|_c.feh.medi.beh=1+0|heh-ar.medi=1+357|_c.hah.beh=0+7|hah-ar.init=0+703", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "حهم", + "expectation": "meem-ar.fina.round=2+554|heh-ar.medi.round=1+323|_c.hah.beh=0+7|hah-ar.init=0+703", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "حهم", + "expectation": "meem-ar.fina.round=2+554|heh-ar.medi.round=1+323|_c.hah.beh=0+7|hah-ar.init=0+703", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "حير", + "expectation": "reh-ar.fina=2+393|twodotsverticalbelow-ar=1@9,-167+0|behDotless-ar.medi=1+128|_c.hah.beh=0+7|hah-ar.init=0+703", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "حير", + "expectation": "reh-ar.fina=2+393|twodotsverticalbelow-ar=1@9,-167+0|behDotless-ar.medi=1+128|_c.hah.beh=0+7|hah-ar.init=0+703", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "حيم", + "expectation": "meem-ar.fina.round=2+554|twodotsverticalbelow-ar=1@-15,-137+0|behDotless-ar.medi.round=1+108|_c.hah.beh=0+7|hah-ar.init=0+703", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "حيم", + "expectation": "meem-ar.fina.round=2+554|twodotsverticalbelow-ar=1@-15,-137+0|behDotless-ar.medi.round=1+108|_c.hah.beh=0+7|hah-ar.init=0+703", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "حيو", + "expectation": "waw-ar.fina=2+472|twodotsverticalbelow-ar=1@-1,-167+0|behDotless-ar.medi=1@-10,0+118|_c.hah.beh=0+7|hah-ar.init=0+703", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "حيو", + "expectation": "waw-ar.fina=2+472|twodotsverticalbelow-ar=1@-1,-167+0|behDotless-ar.medi=1@-10,0+118|_c.hah.beh=0+7|hah-ar.init=0+703", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "حپر", + "expectation": "reh-ar.fina=2+393|threedotsdownbelow-ar=1@9,-192+0|behDotless-ar.medi=1+128|_c.hah.beh=0+7|hah-ar.init=0+703", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "حپر", + "expectation": "reh-ar.fina=2+393|threedotsdownbelow-ar=1@9,-192+0|behDotless-ar.medi=1+128|_c.hah.beh=0+7|hah-ar.init=0+703", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "حپو", + "expectation": "waw-ar.fina=2+472|threedotsdownbelow-ar=1@-1,-192+0|behDotless-ar.medi=1@-10,0+118|_c.hah.beh=0+7|hah-ar.init=0+703", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "حپو", + "expectation": "waw-ar.fina=2+472|threedotsdownbelow-ar=1@-1,-192+0|behDotless-ar.medi=1@-10,0+118|_c.hah.beh=0+7|hah-ar.init=0+703", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "سبا", + "expectation": "alef-ar.fina=2+101|dotbelow-ar=1@9,-110+0|_c.seen.beh=1+0|behDotless-ar.medi=1+128|_c.seen.beh=0+0|seen-ar.init=0+378", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "سبا", + "expectation": "alef-ar.fina=2+101|dotbelow-ar=1@9,-110+0|_c.seen.beh=1+0|behDotless-ar.medi=1+128|_c.seen.beh=0+0|seen-ar.init=0+378", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "سبب", + "expectation": "dotbelow-ar=2@834,-111+0|behDotless-ar.fina=2+984|dotbelow-ar=1@14,-110+0|_c.seen.beh=1+0|behDotless-ar.medi.high=1+128|_c.seen.beh=0+0|seen-ar.init=0+378", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "سبب", + "expectation": "dotbelow-ar=2@834,-111+0|behDotless-ar.fina=2+984|dotbelow-ar=1@14,-110+0|_c.seen.beh=1+0|behDotless-ar.medi.high=1+128|_c.seen.beh=0+0|seen-ar.init=0+378", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "سبه", + "expectation": "heh-ar.fina=2+339|dotbelow-ar=1@17,-110+0|_c.seen.beh=1+0|behDotless-ar.medi.med=1+128|_c.seen.beh=0+0|seen-ar.init=0+378", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "سبه", + "expectation": "heh-ar.fina=2+339|dotbelow-ar=1@17,-110+0|_c.seen.beh=1+0|behDotless-ar.medi.med=1+128|_c.seen.beh=0+0|seen-ar.init=0+378", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "سسا", + "expectation": "alef-ar.fina=2+101|_c.seen.beh=1+0|seen-ar.medi=1+401|_c.seen.beh=0+0|seen-ar.init=0+378", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "سسا", + "expectation": "alef-ar.fina=2+101|_c.seen.beh=1+0|seen-ar.medi=1+401|_c.seen.beh=0+0|seen-ar.init=0+378", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "سسي", + "expectation": "twodotsverticalbelow-ar=1@339,-337+0|seen_alefMaksura-ar.fina=1+343|_c.seen.beh=0+0|seen-ar.init=0+378", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "سسي", + "expectation": "twodotsverticalbelow-ar=1@339,-337+0|seen_alefMaksura-ar.fina=1+343|_c.seen.beh=0+0|seen-ar.init=0+378", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "سضا", + "expectation": "alef-ar.fina=2+101|dotabove-ar=1@310,247+0|_c.seen.beh=1+0|sad-ar.medi=1+758|seen-ar.init=0@-15,0+363", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "سضا", + "expectation": "alef-ar.fina=2+101|dotabove-ar=1@310,247+0|_c.seen.beh=1+0|sad-ar.medi=1+758|seen-ar.init=0@-15,0+363", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "سطا", + "expectation": "alef-ar.fina.short=2+102|_c.seen.beh=1+0|tah-ar.medi=1+758|seen-ar.init=0@-15,0+363", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "سطا", + "expectation": "alef-ar.fina.short=2+102|_c.seen.beh=1+0|tah-ar.medi=1+758|seen-ar.init=0@-15,0+363", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "سعا", + "expectation": "alef-ar.fina=2+101|_c.ain.medi.beh=1+66|ain-ar.medi=1+220|_c.seen.beh=0+0|seen-ar.init=0+378", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "سعا", + "expectation": "alef-ar.fina=2+101|_c.ain.medi.beh=1+66|ain-ar.medi=1+220|_c.seen.beh=0+0|seen-ar.init=0+378", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "سكا", + "expectation": "alef-ar.fina=2+101|kaf-ar.medi.alt=1@-5,0+753|seen-ar.init=0@-15,0+363", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "سكا", + "expectation": "alef-ar.fina=2+101|kaf-ar.medi.alt=1@-5,0+753|seen-ar.init=0@-15,0+363", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "سلا", + "expectation": "lam_alef-ar.fina=1+510|seen-ar.init=0+378", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "سلا", + "expectation": "lam_alef-ar.fina=1+510|seen-ar.init=0+378", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "سلن", + "expectation": "dotabove-ar=2@-3,101+0|noonghunna-ar.fina=2+250|lam-ar.medi.round=1+95|_c.seen.beh=0+0|seen-ar.init=0+378", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "سلن", + "expectation": "dotabove-ar=2@-3,101+0|noonghunna-ar.fina=2+250|lam-ar.medi.round=1+95|_c.seen.beh=0+0|seen-ar.init=0+378", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "سما", + "expectation": "alef-ar.fina=2+101|_c.seen.beh=1+0|meem-ar.medi=1+380|_c.seen.meem=0@11,0+27|seen-ar.init=0@-36,0+342", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "سما", + "expectation": "alef-ar.fina=2+101|_c.seen.beh=1+0|meem-ar.medi=1+380|_c.seen.meem=0@11,0+27|seen-ar.init=0@-36,0+342", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "سمم", + "expectation": "meem-ar.fina.round=2+554|meem-ar.medi.round2=1+398|_c.seen.meem=0@7,0+23|seen-ar.init=0@-36,0+342", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "سمم", + "expectation": "meem-ar.fina.round=2+554|meem-ar.medi.round2=1+398|_c.seen.meem=0@7,0+23|seen-ar.init=0@-36,0+342", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "سها", + "expectation": "alef-ar.fina=2+101|_c.feh.medi.beh=1+0|heh-ar.medi=1+357|_c.seen.beh=0+0|seen-ar.init=0+378", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "سها", + "expectation": "alef-ar.fina=2+101|_c.feh.medi.beh=1+0|heh-ar.medi=1+357|_c.seen.beh=0+0|seen-ar.init=0+378", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "سهم", + "expectation": "meem-ar.fina.round=2+554|heh-ar.medi.round=1+323|_c.seen.beh=0+0|seen-ar.init=0+378", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "سهم", + "expectation": "meem-ar.fina.round=2+554|heh-ar.medi.round=1+323|_c.seen.beh=0+0|seen-ar.init=0+378", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "سيء", + "expectation": "hamza-ar=2+0|twodotsverticalbelow-ar=0@330,-337+0|seen_alefMaksura-ar=0+346", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "سيء", + "expectation": "hamza-ar=2+0|twodotsverticalbelow-ar=0@330,-337+0|seen_alefMaksura-ar=0+346", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "سيا", + "expectation": "alef-ar.fina=2+101|twodotsverticalbelow-ar=1@9,-137+0|_c.seen.beh=1+0|behDotless-ar.medi=1+128|_c.seen.beh=0+0|seen-ar.init=0+378", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "سيا", + "expectation": "alef-ar.fina=2+101|twodotsverticalbelow-ar=1@9,-137+0|_c.seen.beh=1+0|behDotless-ar.medi=1+128|_c.seen.beh=0+0|seen-ar.init=0+378", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "سيم", + "expectation": "meem-ar.fina.round=2+554|twodotsverticalbelow-ar=1@-15,-137+0|behDotless-ar.medi.round=1+108|_c.seen.beh=0+0|seen-ar.init=0+378", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "سيم", + "expectation": "meem-ar.fina.round=2+554|twodotsverticalbelow-ar=1@-15,-137+0|behDotless-ar.medi.round=1+108|_c.seen.beh=0+0|seen-ar.init=0+378", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "شئِ", + "expectation": "kasra-ar=0@122,-393+0|threedotshorizontalabove-ar.3=0@-35,167+0|seen_alefMaksura-ar=0+346", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "شئِ", + "expectation": "kasra-ar=0@122,-393+0|threedotshorizontalabove-ar.3=0@-35,167+0|seen_alefMaksura-ar=0+346", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "ششش", + "expectation": "threedotshorizontalabove-ar.4=2@6,222+0|seen-ar.fina=2+510|threedotshorizontalabove-ar.1=1@-1,174+0|_c.seen.beh=1+0|seen-ar.medi=1+401|threedotshorizontalabove-ar=0@3,169+0|_c.seen.beh=0+0|seen-ar.init=0+378", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "ششش", + "expectation": "threedotshorizontalabove-ar.4=2@6,222+0|seen-ar.fina=2+510|threedotshorizontalabove-ar.1=1@-1,174+0|_c.seen.beh=1+0|seen-ar.medi=1+401|threedotshorizontalabove-ar=0@3,169+0|_c.seen.beh=0+0|seen-ar.init=0+378", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "شيق", + "expectation": "twodotsverticalabove-ar=2@-62,265+0|qafDotless-ar.fina=2+373|twodotsverticalbelow-ar=1@159,-137+0|behDotless-ar.medi=1+128|threedotshorizontalabove-ar=0@3,169+0|_c.seen.beh=0+0|seen-ar.init=0+378", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "شيق", + "expectation": "twodotsverticalabove-ar=2@-62,265+0|qafDotless-ar.fina=2+373|twodotsverticalbelow-ar=1@159,-137+0|behDotless-ar.medi=1+128|threedotshorizontalabove-ar=0@3,169+0|_c.seen.beh=0+0|seen-ar.init=0+378", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "صبا", + "expectation": "alef-ar.fina=2+101|dotbelow-ar=1@9,-110+0|_c.seen.beh=1+0|behDotless-ar.medi=1+128|_c.seen.beh=0+0|sad-ar.init=0+765", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "صبا", + "expectation": "alef-ar.fina=2+101|dotbelow-ar=1@9,-110+0|_c.seen.beh=1+0|behDotless-ar.medi=1+128|_c.seen.beh=0+0|sad-ar.init=0+765", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "صسي", + "expectation": "twodotsverticalbelow-ar=1@339,-337+0|seen_alefMaksura-ar.fina=1+343|_c.seen.beh=0+0|sad-ar.init=0+765", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "صسي", + "expectation": "twodotsverticalbelow-ar=1@339,-337+0|seen_alefMaksura-ar.fina=1+343|_c.seen.beh=0+0|sad-ar.init=0+765", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "طبا", + "expectation": "alef-ar.fina=2+101|dotbelow-ar=1@9,-110+0|_c.seen.beh=1+0|behDotless-ar.medi=1+128|_c.seen.beh=0+0|tah-ar.init=0+765", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "طبا", + "expectation": "alef-ar.fina=2+101|dotbelow-ar=1@9,-110+0|_c.seen.beh=1+0|behDotless-ar.medi=1+128|_c.seen.beh=0+0|tah-ar.init=0+765", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "طحح", + "expectation": "hah-ar.fina=2+417|hah-ar.medi.hah=1@0,115+109|tah-ar.init.hah2=0@0,7+765", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "طحح", + "expectation": "hah-ar.fina=2+417|hah-ar.medi.hah=1@0,115+109|tah-ar.init.hah2=0@0,7+765", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "طسي", + "expectation": "twodotsverticalbelow-ar=1@339,-337+0|seen_alefMaksura-ar.fina=1+343|_c.seen.beh=0+0|tah-ar.init=0+765", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "طسي", + "expectation": "twodotsverticalbelow-ar=1@339,-337+0|seen_alefMaksura-ar.fina=1+343|_c.seen.beh=0+0|tah-ar.init=0+765", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "طلم", + "expectation": "meem-ar.fina.round=2+554|lam-ar.medi.round.short=1@2,0+95|_c.seen.beh=0+0|tah-ar.init=0+765", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "طلم", + "expectation": "meem-ar.fina.round=2+554|lam-ar.medi.round.short=1@2,0+95|_c.seen.beh=0+0|tah-ar.init=0+765", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "طلى", + "expectation": "alefMaksura-ar.fina.tooth=2+9|lam-ar.medi.round.short=1@2,0+95|_c.seen.beh=0+0|tah-ar.init=0+765", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "طلى", + "expectation": "alefMaksura-ar.fina.tooth=2+9|lam-ar.medi.round.short=1@2,0+95|_c.seen.beh=0+0|tah-ar.init=0+765", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "عبا", + "expectation": "alef-ar.fina=2+101|dotbelow-ar=1@9,-110+0|_c.seen.beh=1+0|behDotless-ar.medi=1+128|_c.ain.init.beh=0+95|ain-ar.init=0@-50,0+640", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "عبا", + "expectation": "alef-ar.fina=2+101|dotbelow-ar=1@9,-110+0|_c.seen.beh=1+0|behDotless-ar.medi=1+128|_c.ain.init.beh=0+95|ain-ar.init=0@-50,0+640", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "عبب", + "expectation": "dotbelow-ar=2@834,-111+0|behDotless-ar.fina=2+984|dotbelow-ar=1@14,-110+0|_c.seen.beh=1+0|behDotless-ar.medi.high=1+128|_c.ain.init.beh=0+95|ain-ar.init=0@-50,0+640", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "عبب", + "expectation": "dotbelow-ar=2@834,-111+0|behDotless-ar.fina=2+984|dotbelow-ar=1@14,-110+0|_c.seen.beh=1+0|behDotless-ar.medi.high=1+128|_c.ain.init.beh=0+95|ain-ar.init=0@-50,0+640", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "عبم", + "expectation": "meem-ar.fina.round=2+554|dotbelow-ar=1@-15,-110+0|behDotless-ar.medi.round=1+108|_c.ain.init.beh=0+95|ain-ar.init=0@-50,0+640", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "عبم", + "expectation": "meem-ar.fina.round=2+554|dotbelow-ar=1@-15,-110+0|behDotless-ar.medi.round=1+108|_c.ain.init.beh=0+95|ain-ar.init=0@-50,0+640", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "عبه", + "expectation": "heh-ar.fina=2+339|dotbelow-ar=1@17,-110+0|_c.seen.beh=1+0|behDotless-ar.medi.med=1+128|_c.ain.init.beh=0+95|ain-ar.init=0@-50,0+640", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "عبه", + "expectation": "heh-ar.fina=2+339|dotbelow-ar=1@17,-110+0|_c.seen.beh=1+0|behDotless-ar.medi.med=1+128|_c.ain.init.beh=0+95|ain-ar.init=0@-50,0+640", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "عسا", + "expectation": "alef-ar.fina=2+101|_c.seen.beh=1+0|seen-ar.medi=1+401|_c.ain.init.beh=0+95|ain-ar.init=0@-50,0+640", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "عسا", + "expectation": "alef-ar.fina=2+101|_c.seen.beh=1+0|seen-ar.medi=1+401|_c.ain.init.beh=0+95|ain-ar.init=0@-50,0+640", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "عسي", + "expectation": "twodotsverticalbelow-ar=1@339,-337+0|seen_alefMaksura-ar.fina=1+343|_c.ain.init.beh=0+95|ain-ar.init=0@-50,0+640", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "عسي", + "expectation": "twodotsverticalbelow-ar=1@339,-337+0|seen_alefMaksura-ar.fina=1+343|_c.ain.init.beh=0+95|ain-ar.init=0@-50,0+640", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "عضا", + "expectation": "alef-ar.fina=2+101|dotabove-ar=1@310,247+0|_c.seen.beh=1+0|sad-ar.medi=1+758|_c.ain.dal=0+47|ain-ar.init=0+690", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "عضا", + "expectation": "alef-ar.fina=2+101|dotabove-ar=1@310,247+0|_c.seen.beh=1+0|sad-ar.medi=1+758|_c.ain.dal=0+47|ain-ar.init=0+690", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "عطا", + "expectation": "alef-ar.fina.short=2+102|_c.seen.beh=1+0|tah-ar.medi=1+758|_c.ain.dal=0+47|ain-ar.init=0+690", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "عطا", + "expectation": "alef-ar.fina.short=2+102|_c.seen.beh=1+0|tah-ar.medi=1+758|_c.ain.dal=0+47|ain-ar.init=0+690", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "ععا", + "expectation": "alef-ar.fina=2+101|_c.ain.medi.beh=1+66|ain-ar.medi=1+220|_c.ain.init.beh=0+95|ain-ar.init=0@-50,0+640", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "ععا", + "expectation": "alef-ar.fina=2+101|_c.ain.medi.beh=1+66|ain-ar.medi=1+220|_c.ain.init.beh=0+95|ain-ar.init=0@-50,0+640", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "ععع", + "expectation": "ain-ar.fina=2+267|_c.ain.medi.beh=1+66|ain-ar.medi=1+220|_c.ain.init.beh=0+95|ain-ar.init=0@-50,0+640", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "ععع", + "expectation": "ain-ar.fina=2+267|_c.ain.medi.beh=1+66|ain-ar.medi=1+220|_c.ain.init.beh=0+95|ain-ar.init=0@-50,0+640", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "عكا", + "expectation": "alef-ar.fina=2+101|kaf-ar.medi.alt=1@-5,0+753|_c.ain.dal=0+47|ain-ar.init=0+690", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "عكا", + "expectation": "alef-ar.fina=2+101|kaf-ar.medi.alt=1@-5,0+753|_c.ain.dal=0+47|ain-ar.init=0+690", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "علا", + "expectation": "lam_alef-ar.fina=1+510|ain-ar.init=0@-20,0+670", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "علا", + "expectation": "lam_alef-ar.fina=1+510|ain-ar.init=0@-20,0+670", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "علج", + "expectation": "dotbelow-ar=2@571,-122+0|hah-ar.fina=2+417|lam-ar.medi.hah1=1+125|_c.ain.init.beh=0@0,115+95|ain-ar.init=0@-50,115+640", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "علج", + "expectation": "dotbelow-ar=2@571,-122+0|hah-ar.fina=2+417|lam-ar.medi.hah1=1+125|_c.ain.init.beh=0@0,115+95|ain-ar.init=0@-50,115+640", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "علل", + "expectation": "lam-ar.fina.short=2+178|_c.seen.beh=1+0|lam-ar.medi=1+125|_c.ain.init.beh=0+95|ain-ar.init=0@-50,0+640", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "علل", + "expectation": "lam-ar.fina.short=2+178|_c.seen.beh=1+0|lam-ar.medi=1+125|_c.ain.init.beh=0+95|ain-ar.init=0@-50,0+640", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "علم", + "expectation": "meem-ar.fina.round=2+554|lam-ar.medi.round=1+95|_c.ain.init.beh=0+95|ain-ar.init=0@-50,0+640", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "علم", + "expectation": "meem-ar.fina.round=2+554|lam-ar.medi.round=1+95|_c.ain.init.beh=0+95|ain-ar.init=0@-50,0+640", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "علن", + "expectation": "dotabove-ar=2@-3,101+0|noonghunna-ar.fina=2+250|lam-ar.medi.round=1+95|_c.ain.init.beh=0+95|ain-ar.init=0@-50,0+640", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "علن", + "expectation": "dotabove-ar=2@-3,101+0|noonghunna-ar.fina=2+250|lam-ar.medi.round=1+95|_c.ain.init.beh=0+95|ain-ar.init=0@-50,0+640", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "على", + "expectation": "alefMaksura-ar.fina.tooth=2+9|lam-ar.medi.round=1+95|_c.ain.init.beh=0+95|ain-ar.init=0@-50,0+640", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "على", + "expectation": "alefMaksura-ar.fina.tooth=2+9|lam-ar.medi.round=1+95|_c.ain.init.beh=0+95|ain-ar.init=0@-50,0+640", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "علي", + "expectation": "twodotsverticalbelow-ar=2@311,-329+0|alefMaksura-ar.fina.tooth=2+9|lam-ar.medi.round=1+95|_c.ain.init.beh=0+95|ain-ar.init=0@-50,0+640", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "علي", + "expectation": "twodotsverticalbelow-ar=2@311,-329+0|alefMaksura-ar.fina.tooth=2+9|lam-ar.medi.round=1+95|_c.ain.init.beh=0+95|ain-ar.init=0@-50,0+640", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "عما", + "expectation": "alef-ar.fina=2+101|_c.seen.beh=1+0|meem-ar.medi=1+380|_c.ain.meem=0@13,0+48|ain-ar.init=0+690", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "عما", + "expectation": "alef-ar.fina=2+101|_c.seen.beh=1+0|meem-ar.medi=1+380|_c.ain.meem=0@13,0+48|ain-ar.init=0+690", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "عمم", + "expectation": "meem-ar.fina.round=2+554|meem-ar.medi.round2=1+398|_c.ain.meem=0@8,0+43|ain-ar.init=0+690", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "عمم", + "expectation": "meem-ar.fina.round=2+554|meem-ar.medi.round2=1+398|_c.ain.meem=0@8,0+43|ain-ar.init=0+690", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "عها", + "expectation": "alef-ar.fina=2+101|_c.feh.medi.beh=1+0|heh-ar.medi=1+357|_c.ain.init.beh=0+95|ain-ar.init=0@-50,0+640", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "عها", + "expectation": "alef-ar.fina=2+101|_c.feh.medi.beh=1+0|heh-ar.medi=1+357|_c.ain.init.beh=0+95|ain-ar.init=0@-50,0+640", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "عهم", + "expectation": "meem-ar.fina.round=2+554|heh-ar.medi.round=1+323|_c.ain.init.beh=0+95|ain-ar.init=0@-50,0+640", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "عهم", + "expectation": "meem-ar.fina.round=2+554|heh-ar.medi.round=1+323|_c.ain.init.beh=0+95|ain-ar.init=0@-50,0+640", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "عيم", + "expectation": "meem-ar.fina.round=2+554|twodotsverticalbelow-ar=1@-15,-137+0|behDotless-ar.medi.round=1+108|_c.ain.init.beh=0+95|ain-ar.init=0@-50,0+640", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "عيم", + "expectation": "meem-ar.fina.round=2+554|twodotsverticalbelow-ar=1@-15,-137+0|behDotless-ar.medi.round=1+108|_c.ain.init.beh=0+95|ain-ar.init=0@-50,0+640", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "غغغ", + "expectation": "dotabove-ar=2@-35,195+0|ain-ar.fina=2+267|dotabove-ar=1@-8,223+0|_c.ain.medi.beh=1+66|ain-ar.medi=1+220|dotabove-ar=0@56,266+0|_c.ain.init.beh=0+95|ain-ar.init=0@-50,0+640", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "غغغ", + "expectation": "dotabove-ar=2@-35,195+0|ain-ar.fina=2+267|dotabove-ar=1@-8,223+0|_c.ain.medi.beh=1+66|ain-ar.medi=1+220|dotabove-ar=0@56,266+0|_c.ain.init.beh=0+95|ain-ar.init=0@-50,0+640", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "ــد", + "expectation": "dal-ar.fina=2+875|kashida-ar=1+100|kashida-ar=0+100", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "ــد", + "expectation": "dal-ar.fina=2+875|kashida-ar=1+100|kashida-ar=0+100", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "فبا", + "expectation": "alef-ar.fina=2+101|dotbelow-ar=1@9,-110+0|_c.seen.beh=1+0|behDotless-ar.medi=1+128|dotabove-ar=0@-1,373+0|_c.feh.init.beh=0+174|fehDotless-ar.init=0@-114,0+220", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "فبا", + "expectation": "alef-ar.fina=2+101|dotbelow-ar=1@9,-110+0|_c.seen.beh=1+0|behDotless-ar.medi=1+128|dotabove-ar=0@-1,373+0|_c.feh.init.beh=0+174|fehDotless-ar.init=0@-114,0+220", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "فبب", + "expectation": "dotbelow-ar=2@834,-111+0|behDotless-ar.fina=2+984|dotbelow-ar=1@14,-110+0|_c.seen.beh=1+0|behDotless-ar.medi.high=1+128|dotabove-ar=0@-1,373+0|_c.feh.init.beh=0+174|fehDotless-ar.init=0@-114,0+220", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "فبب", + "expectation": "dotbelow-ar=2@834,-111+0|behDotless-ar.fina=2+984|dotbelow-ar=1@14,-110+0|_c.seen.beh=1+0|behDotless-ar.medi.high=1+128|dotabove-ar=0@-1,373+0|_c.feh.init.beh=0+174|fehDotless-ar.init=0@-114,0+220", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "فبم", + "expectation": "meem-ar.fina.round=2+554|dotbelow-ar=1@-15,-110+0|behDotless-ar.medi.round=1+108|dotabove-ar=0@-1,373+0|_c.feh.init.beh=0+174|fehDotless-ar.init=0@-114,0+220", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "فبم", + "expectation": "meem-ar.fina.round=2+554|dotbelow-ar=1@-15,-110+0|behDotless-ar.medi.round=1+108|dotabove-ar=0@-1,373+0|_c.feh.init.beh=0+174|fehDotless-ar.init=0@-114,0+220", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "فبه", + "expectation": "heh-ar.fina=2+339|dotbelow-ar=1@17,-110+0|_c.seen.beh=1+0|behDotless-ar.medi.med=1+128|dotabove-ar=0@-1,373+0|_c.feh.init.beh=0+174|fehDotless-ar.init=0@-114,0+220", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "فبه", + "expectation": "heh-ar.fina=2+339|dotbelow-ar=1@17,-110+0|_c.seen.beh=1+0|behDotless-ar.medi.med=1+128|dotabove-ar=0@-1,373+0|_c.feh.init.beh=0+174|fehDotless-ar.init=0@-114,0+220", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "فتح", + "expectation": "hah-ar.fina=2+417|twodotsverticalabove-ar.beh=1@-22,417+0|behDotless-ar.medi=1@0,115+128|dotabove-ar=0@-1,488+0|_c.feh.init.beh=0@0,115+174|fehDotless-ar.init=0@-114,115+220", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "فتح", + "expectation": "hah-ar.fina=2+417|twodotsverticalabove-ar.beh=1@-22,417+0|behDotless-ar.medi=1@0,115+128|dotabove-ar=0@-1,488+0|_c.feh.init.beh=0@0,115+174|fehDotless-ar.init=0@-114,115+220", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "فحا", + "expectation": "alef-ar.fina=2+101|_c.hah.beh=1+7|hah-ar.medi=1+133|dotabove-ar=0@-56,495+0|fehDotless-ar.init.hah=0@11,122+479", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "فحا", + "expectation": "alef-ar.fina=2+101|_c.hah.beh=1+7|hah-ar.medi=1+133|dotabove-ar=0@-56,495+0|fehDotless-ar.init.hah=0@11,122+479", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "فحح", + "expectation": "hah-ar.fina=2+417|hah-ar.medi.hah=1@0,115+109|dotabove-ar=0@-56,610+0|fehDotless-ar.init.hah=0@11,237+479", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "فحح", + "expectation": "hah-ar.fina=2+417|hah-ar.medi.hah=1@0,115+109|dotabove-ar=0@-56,610+0|fehDotless-ar.init.hah=0@11,237+479", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "فسا", + "expectation": "alef-ar.fina=2+101|_c.seen.beh=1+0|seen-ar.medi=1+401|dotabove-ar=0@-1,373+0|_c.feh.init.beh=0+174|fehDotless-ar.init=0@-114,0+220", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "فسا", + "expectation": "alef-ar.fina=2+101|_c.seen.beh=1+0|seen-ar.medi=1+401|dotabove-ar=0@-1,373+0|_c.feh.init.beh=0+174|fehDotless-ar.init=0@-114,0+220", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "فسي", + "expectation": "twodotsverticalbelow-ar=1@339,-337+0|seen_alefMaksura-ar.fina=1+343|dotabove-ar=0@-1,373+0|_c.feh.init.beh=0+174|fehDotless-ar.init=0@-114,0+220", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "فسي", + "expectation": "twodotsverticalbelow-ar=1@339,-337+0|seen_alefMaksura-ar.fina=1+343|dotabove-ar=0@-1,373+0|_c.feh.init.beh=0+174|fehDotless-ar.init=0@-114,0+220", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "فصا", + "expectation": "alef-ar.fina=2+101|_c.seen.beh=1+0|sad-ar.medi=1+758|dotabove-ar=0@-41,373+0|_c.feh.init.dal=0+137|fehDotless-ar.init=0@-117,0+217", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "فصا", + "expectation": "alef-ar.fina=2+101|_c.seen.beh=1+0|sad-ar.medi=1+758|dotabove-ar=0@-41,373+0|_c.feh.init.dal=0+137|fehDotless-ar.init=0@-117,0+217", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "فطا", + "expectation": "alef-ar.fina.short=2+102|_c.seen.beh=1+0|tah-ar.medi=1+758|dotabove-ar=0@-41,373+0|_c.feh.init.dal=0+137|fehDotless-ar.init=0@-117,0+217", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "فطا", + "expectation": "alef-ar.fina.short=2+102|_c.seen.beh=1+0|tah-ar.medi=1+758|dotabove-ar=0@-41,373+0|_c.feh.init.dal=0+137|fehDotless-ar.init=0@-117,0+217", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "فعا", + "expectation": "alef-ar.fina=2+101|_c.ain.medi.beh=1+66|ain-ar.medi=1+220|dotabove-ar=0@-1,373+0|_c.feh.init.beh=0+174|fehDotless-ar.init=0@-114,0+220", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "فعا", + "expectation": "alef-ar.fina=2+101|_c.ain.medi.beh=1+66|ain-ar.medi=1+220|dotabove-ar=0@-1,373+0|_c.feh.init.beh=0+174|fehDotless-ar.init=0@-114,0+220", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "ففا", + "expectation": "alef-ar.fina=2+101|dotabove-ar=1@1,329+0|_c.feh.medi.beh=1+0|fehDotless-ar.medi=1+377|dotabove-ar=0@-4,373+0|_c.feh.init.beh=0@-3,0+171|fehDotless-ar.init=0@-114,0+220", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "ففا", + "expectation": "alef-ar.fina=2+101|dotabove-ar=1@1,329+0|_c.feh.medi.beh=1+0|fehDotless-ar.medi=1+377|dotabove-ar=0@-4,373+0|_c.feh.init.beh=0@-3,0+171|fehDotless-ar.init=0@-114,0+220", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "فكا", + "expectation": "alef-ar.fina=2+101|kaf-ar.medi.alt=1@-5,0+753|dotabove-ar=0@-41,373+0|_c.feh.init.dal=0+137|fehDotless-ar.init=0@-117,0+217", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "فكا", + "expectation": "alef-ar.fina=2+101|kaf-ar.medi.alt=1@-5,0+753|dotabove-ar=0@-41,373+0|_c.feh.init.dal=0+137|fehDotless-ar.init=0@-117,0+217", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "فلآ", + "expectation": "madda-ar=1@149,582+0|lam_alef-ar.fina=1+510|dotabove-ar=0@-91,373+0|fehDotless-ar.init=0@-30,0+304", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "فلآ", + "expectation": "madda-ar=1@149,582+0|lam_alef-ar.fina=1+510|dotabove-ar=0@-91,373+0|fehDotless-ar.init=0@-30,0+304", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "فلأ", + "expectation": "fatha-ar=1@335,570+0|lam_alef-ar.fina=1+510|dotabove-ar=0@-91,373+0|fehDotless-ar.init=0@-30,0+304", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "فلأ", + "expectation": "fatha-ar=1@335,570+0|lam_alef-ar.fina=1+510|dotabove-ar=0@-91,373+0|fehDotless-ar.init=0@-30,0+304", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "فلا", + "expectation": "lam_alef-ar.fina=1+510|dotabove-ar=0@-91,373+0|fehDotless-ar.init=0@-30,0+304", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "فلا", + "expectation": "lam_alef-ar.fina=1+510|dotabove-ar=0@-91,373+0|fehDotless-ar.init=0@-30,0+304", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "فما", + "expectation": "alef-ar.fina=2+101|_c.seen.beh=1+0|meem-ar.medi=1+380|dotabove-ar=0@-26,373+0|_c.feh.init.dal=0@15,0+152|fehDotless-ar.init=0@-117,0+217", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "فما", + "expectation": "alef-ar.fina=2+101|_c.seen.beh=1+0|meem-ar.medi=1+380|dotabove-ar=0@-26,373+0|_c.feh.init.dal=0@15,0+152|fehDotless-ar.init=0@-117,0+217", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "فمم", + "expectation": "meem-ar.fina.round=2+554|meem-ar.medi.round2=1+398|dotabove-ar=0@-32,373+0|_c.feh.init.dal=0@9,0+146|fehDotless-ar.init=0@-117,0+217", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "فمم", + "expectation": "meem-ar.fina.round=2+554|meem-ar.medi.round2=1+398|dotabove-ar=0@-32,373+0|_c.feh.init.dal=0@9,0+146|fehDotless-ar.init=0@-117,0+217", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "فمن", + "expectation": "dotabove-ar=2@-3,101+0|noonghunna-ar.fina=2+250|meem-ar.medi.round2=1+398|dotabove-ar=0@-32,373+0|_c.feh.init.dal=0@9,0+146|fehDotless-ar.init=0@-117,0+217", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "فمن", + "expectation": "dotabove-ar=2@-3,101+0|noonghunna-ar.fina=2+250|meem-ar.medi.round2=1+398|dotabove-ar=0@-32,373+0|_c.feh.init.dal=0@9,0+146|fehDotless-ar.init=0@-117,0+217", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "فها", + "expectation": "alef-ar.fina=2+101|_c.feh.medi.beh=1+0|heh-ar.medi=1+357|dotabove-ar=0@-1,373+0|_c.feh.init.beh=0+174|fehDotless-ar.init=0@-114,0+220", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "فها", + "expectation": "alef-ar.fina=2+101|_c.feh.medi.beh=1+0|heh-ar.medi=1+357|dotabove-ar=0@-1,373+0|_c.feh.init.beh=0+174|fehDotless-ar.init=0@-114,0+220", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "فهم", + "expectation": "meem-ar.fina.round=2+554|heh-ar.medi.round=1+323|dotabove-ar=0@-1,373+0|_c.feh.init.beh=0+174|fehDotless-ar.init=0@-114,0+220", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "فهم", + "expectation": "meem-ar.fina.round=2+554|heh-ar.medi.round=1+323|dotabove-ar=0@-1,373+0|_c.feh.init.beh=0+174|fehDotless-ar.init=0@-114,0+220", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "فهو", + "expectation": "waw-ar.fina.round=2+492|heh-ar.medi.round=1+323|dotabove-ar=0@-1,373+0|_c.feh.init.beh=0+174|fehDotless-ar.init=0@-114,0+220", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "فهو", + "expectation": "waw-ar.fina.round=2+492|heh-ar.medi.round=1+323|dotabove-ar=0@-1,373+0|_c.feh.init.beh=0+174|fehDotless-ar.init=0@-114,0+220", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "قال", + "expectation": "lam-ar=2+186|twodotsverticalabove-ar=0@523,402+0|fehDotless_alef-ar=0@400,0+960", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "قال", + "expectation": "lam-ar.short=2+186|twodotsverticalabove-ar=0@126,402+0|fehDotless_alef-ar=0@3,0+563", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "قلم", + "expectation": "meem-ar.fina.round=2+554|lam-ar.medi.round=1+95|twodotsverticalabove-ar=0@-31,381+0|_c.feh.init.beh=0+174|fehDotless-ar.init=0@-114,0+220", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "قلم", + "expectation": "meem-ar.fina.round=2+554|lam-ar.medi.round=1+95|twodotsverticalabove-ar=0@-31,381+0|_c.feh.init.beh=0+174|fehDotless-ar.init=0@-114,0+220", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "كسي", + "expectation": "twodotsverticalbelow-ar=1@339,-337+0|seen_alefMaksura-ar.fina=1+343|kaf-ar.init.alt=0@-5,0+760", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "كسي", + "expectation": "twodotsverticalbelow-ar=1@339,-337+0|seen_alefMaksura-ar.fina=1+343|kaf-ar.init.alt=0@-5,0+760", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "كـا", + "expectation": "alef-ar.fina.kashida=2+219|kashida-ar=1+100|kaf-ar.init=0+765", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "كـا", + "expectation": "alef-ar.fina.kashida=2+219|kashida-ar=1+100|kaf-ar.init=0+765", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "كلا", + "expectation": "lam_alef-ar.fina=1+510|kaf-ar.init.alt=0@-40,0+725", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "كلا", + "expectation": "lam_alef-ar.fina=1+510|kaf-ar.init.alt=0@-40,0+725", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "كما", + "expectation": "alef-ar.fina=2+101|_c.seen.beh=1+0|meem-ar.medi=1+380|kaf-ar.init.alt=0@-5,0+760", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "كما", + "expectation": "alef-ar.fina=2+101|_c.seen.beh=1+0|meem-ar.medi=1+380|kaf-ar.init.alt=0@-5,0+760", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "كمم", + "expectation": "meem-ar.fina.round=2+554|meem-ar.medi.round2=1+398|kaf-ar.init.alt=0@-8,0+757", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "كمم", + "expectation": "meem-ar.fina.round=2+554|meem-ar.medi.round2=1+398|kaf-ar.init.alt=0@-8,0+757", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "كًا", + "expectation": "alef-ar.fina=2+101|fathatan-ar=0@44,279+0|kaf-ar.init.alt=0@-5,0+760", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "كًا", + "expectation": "alef-ar.fina=2+101|fathatan-ar=0@44,279+0|kaf-ar.init.alt=0@-5,0+760", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لأَ", + "expectation": "fatha-ar=0@352,599+0|lam_alef-ar=0+542", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لأَ", + "expectation": "fatha-ar=0@352,599+0|lam_alef-ar=0+542", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لأُ", + "expectation": "damma-ar=0@-140,-56+0|lam_alef-ar=0+542", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لأُ", + "expectation": "damma-ar=0@-140,-56+0|lam_alef-ar=0+542", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لإِ", + "expectation": "kasra-ar=0@16,-159+0|lam_alef-ar=0+542", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لإِ", + "expectation": "kasra-ar=0@16,-159+0|lam_alef-ar=0+542", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لبا", + "expectation": "alef-ar.fina=2+101|dotbelow-ar=1@9,-110+0|_c.seen.beh=1+0|behDotless-ar.medi=1+128|_c.seen.beh=0+0|lam-ar.init=0+123", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لبا", + "expectation": "alef-ar.fina=2+101|dotbelow-ar=1@9,-110+0|_c.seen.beh=1+0|behDotless-ar.medi=1+128|_c.seen.beh=0+0|lam-ar.init=0+123", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لحد", + "expectation": "dal-ar.fina=2+875|_c.hah.dal=1+71|hah-ar.medi.alt=1@-71,0+64|lam-ar.init.hah1.alt=0@63,5+578", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لحد", + "expectation": "dal-ar.fina=2+875|_c.hah.dal=1+71|hah-ar.medi.alt=1@-71,0+64|lam-ar.init.hah1.alt=0@63,5+578", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لحم", + "expectation": "meem-ar.fina=2+567|_c.ain.meem=1+35|hah-ar.medi.alt=1@-39,0+96|lam-ar.init.hah1.alt=0@63,5+578", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لحم", + "expectation": "meem-ar.fina=2+567|_c.ain.meem=1+35|hah-ar.medi.alt=1@-39,0+96|lam-ar.init.hah1.alt=0@63,5+578", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لحے", + "expectation": "yehbarree-ar.fina=2+297|_c.ain.yeh=1@-5,0+10|hah-ar.medi.alt=1@-40,0+95|lam-ar.init.hah1.alt=0@63,5+578", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لحے", + "expectation": "yehbarree-ar.fina=2+297|_c.ain.yeh=1@-5,0+10|hah-ar.medi.alt=1@-40,0+95|lam-ar.init.hah1.alt=0@63,5+578", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لسا", + "expectation": "alef-ar.fina=2+101|_c.seen.beh=1+0|seen-ar.medi=1+401|_c.seen.beh=0+0|lam-ar.init=0+123", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لسا", + "expectation": "alef-ar.fina=2+101|_c.seen.beh=1+0|seen-ar.medi=1+401|_c.seen.beh=0+0|lam-ar.init=0+123", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لسب", + "expectation": "dotbelow-ar=2@834,-111+0|behDotless-ar.fina=2+984|_c.seen.beh=1+0|seen-ar.medi=1+401|_c.seen.beh=0+0|lam-ar.init=0+123", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لسب", + "expectation": "dotbelow-ar=2@834,-111+0|behDotless-ar.fina=2+984|_c.seen.beh=1+0|seen-ar.medi=1+401|_c.seen.beh=0+0|lam-ar.init=0+123", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لسد", + "expectation": "dal-ar.fina=2+875|seen-ar.medi=1@-15,0+386|_c.seen.beh=0+0|lam-ar.init=0+123", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لسد", + "expectation": "dal-ar.fina=2+875|seen-ar.medi=1@-15,0+386|_c.seen.beh=0+0|lam-ar.init=0+123", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لسر", + "expectation": "reh-ar.fina=2+393|seen-ar.medi=1+401|_c.seen.beh=0+0|lam-ar.init=0+123", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لسر", + "expectation": "reh-ar.fina=2+393|seen-ar.medi=1+401|_c.seen.beh=0+0|lam-ar.init=0+123", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لسس", + "expectation": "seen-ar.fina=2+510|_c.seen.beh=1+0|seen-ar.medi=1+401|_c.seen.beh=0+0|lam-ar.init=0+123", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لسس", + "expectation": "seen-ar.fina=2+510|_c.seen.beh=1+0|seen-ar.medi=1+401|_c.seen.beh=0+0|lam-ar.init=0+123", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لسض", + "expectation": "dotabove-ar=2@398,247+0|sad-ar.fina=2+876|seen-ar.medi=1@-15,0+386|_c.seen.beh=0+0|lam-ar.init=0+123", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لسض", + "expectation": "dotabove-ar=2@398,247+0|sad-ar.fina=2+876|seen-ar.medi=1@-15,0+386|_c.seen.beh=0+0|lam-ar.init=0+123", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لسط", + "expectation": "tah-ar.fina=2+798|seen-ar.medi=1@-15,0+386|_c.seen.beh=0+0|lam-ar.init=0+123", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لسط", + "expectation": "tah-ar.fina=2+798|seen-ar.medi=1@-15,0+386|_c.seen.beh=0+0|lam-ar.init=0+123", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لسع", + "expectation": "ain-ar.fina=2+267|_c.seen.beh=1+0|seen-ar.medi=1+401|_c.seen.beh=0+0|lam-ar.init=0+123", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لسع", + "expectation": "ain-ar.fina=2+267|_c.seen.beh=1+0|seen-ar.medi=1+401|_c.seen.beh=0+0|lam-ar.init=0+123", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لسف", + "expectation": "dotabove-ar=2@609,319+0|fehDotless-ar.fina=2+997|_c.seen.beh=1+0|seen-ar.medi=1+401|_c.seen.beh=0+0|lam-ar.init=0+123", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لسف", + "expectation": "dotabove-ar=2@609,319+0|fehDotless-ar.fina=2+997|_c.seen.beh=1+0|seen-ar.medi=1+401|_c.seen.beh=0+0|lam-ar.init=0+123", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لسق", + "expectation": "twodotsverticalabove-ar=2@-62,265+0|qafDotless-ar.fina=2+373|_c.seen.meem=1@7,0+23|seen-ar.medi=1@-36,0+365|_c.seen.beh=0+0|lam-ar.init=0+123", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لسق", + "expectation": "twodotsverticalabove-ar=2@-62,265+0|qafDotless-ar.fina=2+373|_c.seen.meem=1@7,0+23|seen-ar.medi=1@-36,0+365|_c.seen.beh=0+0|lam-ar.init=0+123", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لسك", + "expectation": "kaf-ar.fina=2+889|seen-ar.medi=1@-15,0+386|_c.seen.beh=0+0|lam-ar.init=0+123", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لسك", + "expectation": "kaf-ar.fina=2+889|seen-ar.medi=1@-15,0+386|_c.seen.beh=0+0|lam-ar.init=0+123", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لسل", + "expectation": "lam-ar.fina=2+177|_c.seen.beh=1+0|seen-ar.medi=1+401|_c.seen.beh=0+0|lam-ar.init=0+123", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لسل", + "expectation": "lam-ar.fina=2+177|_c.seen.beh=1+0|seen-ar.medi=1+401|_c.seen.beh=0+0|lam-ar.init=0+123", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لسم", + "expectation": "meem-ar.fina=2+567|_c.seen.meem=1+16|seen-ar.medi=1@-36,0+365|_c.seen.beh=0+0|lam-ar.init=0+123", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لسم", + "expectation": "meem-ar.fina=2+567|_c.seen.meem=1+16|seen-ar.medi=1@-36,0+365|_c.seen.beh=0+0|lam-ar.init=0+123", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لسن", + "expectation": "dotabove-ar=2@-3,101+0|noonghunna-ar.fina=2+250|_c.hah.noon=1+-20|seen-ar.medi=1+401|_c.seen.beh=0+0|lam-ar.init=0+123", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لسن", + "expectation": "dotabove-ar=2@-3,101+0|noonghunna-ar.fina=2+250|_c.hah.noon=1+-20|seen-ar.medi=1+401|_c.seen.beh=0+0|lam-ar.init=0+123", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لسه", + "expectation": "heh-ar.fina=2+339|_c.seen.beh=1+0|seen-ar.medi=1+401|_c.seen.beh=0+0|lam-ar.init=0+123", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لسه", + "expectation": "heh-ar.fina=2+339|_c.seen.beh=1+0|seen-ar.medi=1+401|_c.seen.beh=0+0|lam-ar.init=0+123", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لسو", + "expectation": "waw-ar.fina=2+472|seen-ar.medi=1+401|_c.seen.beh=0+0|lam-ar.init=0+123", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لسو", + "expectation": "waw-ar.fina=2+472|seen-ar.medi=1+401|_c.seen.beh=0+0|lam-ar.init=0+123", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لسى", + "expectation": "seen_alefMaksura-ar.fina=1+343|_c.seen.beh=0+0|lam-ar.init=0+123", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لسى", + "expectation": "seen_alefMaksura-ar.fina=1+343|_c.seen.beh=0+0|lam-ar.init=0+123", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لسي", + "expectation": "twodotsverticalbelow-ar=1@339,-337+0|seen_alefMaksura-ar.fina=1+343|_c.seen.beh=0+0|lam-ar.init=0+123", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لسي", + "expectation": "twodotsverticalbelow-ar=1@339,-337+0|seen_alefMaksura-ar.fina=1+343|_c.seen.beh=0+0|lam-ar.init=0+123", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لسے", + "expectation": "yehbarree-ar.fina=2+297|seen-ar.medi=1@-32,0+369|_c.seen.beh=0+0|lam-ar.init=0+353", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لسے", + "expectation": "yehbarree-ar.fina=2+297|seen-ar.medi=1@-32,0+369|_c.seen.beh=0+0|lam-ar.init=0+353", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لصے", + "expectation": "yehbarree-ar.fina=2+297|sad-ar.medi=1+758|lam-ar.init=0@-23,0+100", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لصے", + "expectation": "yehbarree-ar.fina=2+297|sad-ar.medi=1+758|lam-ar.init=0@-23,0+100", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لطم", + "expectation": "meem-ar.fina=2+567|tah-ar.medi=1+758|lam-ar.init=0@-23,0+100", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لطم", + "expectation": "meem-ar.fina=2+567|tah-ar.medi=1+758|lam-ar.init=0@-23,0+100", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لطے", + "expectation": "yehbarree-ar.fina=2+297|tah-ar.medi=1+758|lam-ar.init=0@-23,0+100", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لطے", + "expectation": "yehbarree-ar.fina=2+297|tah-ar.medi=1+758|lam-ar.init=0@-23,0+100", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لعے", + "expectation": "yehbarree-ar.fina=2+297|_c.ain.yeh=1@-5,0+10|ain-ar.medi=1+220|_c.seen.beh=0+0|lam-ar.init=0+533", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لعے", + "expectation": "yehbarree-ar.fina=2+297|_c.ain.yeh=1@-5,0+10|ain-ar.medi=1+220|_c.seen.beh=0+0|lam-ar.init=0+533", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لفے", + "expectation": "yehbarree-ar.fina=2+297|dotabove-ar=1@-46,329+0|_c.feh.medi.reh=1@-24,0+23|fehDotless-ar.medi=1@-70,0+307|_c.seen.beh=0+0|lam-ar.init=0+343", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لفے", + "expectation": "yehbarree-ar.fina=2+297|dotabove-ar=1@-46,329+0|_c.feh.medi.reh=1@-24,0+23|fehDotless-ar.medi=1@-70,0+307|_c.seen.beh=0+0|lam-ar.init=0+343", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لكے", + "expectation": "yehbarree-ar.fina=2+297|kaf-ar.medi.alt=1@-21,0+737|lam-ar.init=0@-23,0+100", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لكے", + "expectation": "yehbarree-ar.fina=2+297|kaf-ar.medi.alt=1@-21,0+737|lam-ar.init=0@-23,0+100", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "للے", + "expectation": "yehbarree-ar.fina=2+297|lam-ar.medi.short=1+123|_c.seen.beh=0+0|lam-ar.init=0+633", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "للے", + "expectation": "yehbarree-ar.fina=2+297|lam-ar.medi.short=1+123|_c.seen.beh=0+0|lam-ar.init=0+633", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لما", + "expectation": "alef-ar.fina=2+101|_c.seen.beh=1+0|meem-ar.medi=1+380|lam-ar.init=0@-25,0+98", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لما", + "expectation": "alef-ar.fina=2+101|_c.seen.beh=1+0|meem-ar.medi=1+380|lam-ar.init=0@-25,0+98", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لمح", + "expectation": "hah-ar.fina=2+417|meem-ar.medi=1@0,115+380|lam-ar.init.hah1=0@-25,0+98", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لمح", + "expectation": "hah-ar.fina=2+417|meem-ar.medi=1@0,115+380|lam-ar.init.hah1=0@-25,0+98", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لمم", + "expectation": "meem-ar.fina.round=2+554|meem-ar.medi.round2=1+398|lam-ar.init=0@-22,0+101", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لمم", + "expectation": "meem-ar.fina.round=2+554|meem-ar.medi.round2=1+398|lam-ar.init=0@-22,0+101", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لمے", + "expectation": "yehbarree-ar.fina=2+297|meem-ar.medi=1+380|lam-ar.init=0@-25,0+358", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لمے", + "expectation": "yehbarree-ar.fina=2+297|meem-ar.medi=1+380|lam-ar.init=0@-25,0+358", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لهے", + "expectation": "yehbarree-ar.fina=2+297|heh-ar.medi=1+357|_c.seen.beh=0+0|lam-ar.init=0+403", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لهے", + "expectation": "yehbarree-ar.fina=2+297|heh-ar.medi=1+357|_c.seen.beh=0+0|lam-ar.init=0+403", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لىے", + "expectation": "yehbarree-ar.fina=2+297|behDotless-ar.medi=1+128|_c.seen.beh=0+0|lam-ar.init=0+633", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لىے", + "expectation": "yehbarree-ar.fina=2+297|behDotless-ar.medi=1+128|_c.seen.beh=0+0|lam-ar.init=0+633", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "ليس", + "expectation": "seen-ar.fina.low=2+487|twodotsverticalbelow-ar=1@17,-137+0|_c.seen.beh=1+0|behDotless-ar.medi.med=1+128|_c.seen.beh=0+0|lam-ar.init=0+123", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "ليس", + "expectation": "seen-ar.fina.low=2+487|twodotsverticalbelow-ar=1@17,-137+0|_c.seen.beh=1+0|behDotless-ar.medi.med=1+128|_c.seen.beh=0+0|lam-ar.init=0+123", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "متا", + "expectation": "alef-ar.fina=2+101|twodotsverticalabove-ar.vert.beh=1@5,298+0|_c.seen.beh=1+0|behDotless-ar.medi=1+128|_c.seen.beh=0+0|meem-ar.init=0+425", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "متا", + "expectation": "alef-ar.fina=2+101|twodotsverticalabove-ar.vert.beh=1@5,298+0|_c.seen.beh=1+0|behDotless-ar.medi=1+128|_c.seen.beh=0+0|meem-ar.init=0+425", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "مثا", + "expectation": "alef-ar.fina=2+101|threedotsupabove-ar.vert.beh=1@5,298+0|_c.seen.beh=1+0|behDotless-ar.medi=1+128|_c.seen.beh=0+0|meem-ar.init=0+425", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "مثا", + "expectation": "alef-ar.fina=2+101|threedotsupabove-ar.vert.beh=1@5,298+0|_c.seen.beh=1+0|behDotless-ar.medi=1+128|_c.seen.beh=0+0|meem-ar.init=0+425", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "مثل", + "expectation": "lam-ar.fina=2+177|threedotsupabove-ar.vert.beh=1@5,298+0|_c.seen.beh=1+0|behDotless-ar.medi=1+128|_c.seen.beh=0+0|meem-ar.init=0+425", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "مثل", + "expectation": "lam-ar.fina=2+177|threedotsupabove-ar.vert.beh=1@5,298+0|_c.seen.beh=1+0|behDotless-ar.medi=1+128|_c.seen.beh=0+0|meem-ar.init=0+425", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "مسي", + "expectation": "twodotsverticalbelow-ar=1@339,-337+0|seen_alefMaksura-ar.fina=1+343|_c.seen.beh=0+0|meem-ar.init=0+425", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "مسي", + "expectation": "twodotsverticalbelow-ar=1@339,-337+0|seen_alefMaksura-ar.fina=1+343|_c.seen.beh=0+0|meem-ar.init=0+425", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "ملى", + "expectation": "alefMaksura-ar.fina.tooth=2+9|lam-ar.medi.round=1+95|_c.seen.beh=0+0|meem-ar.init=0+425", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "ملى", + "expectation": "alefMaksura-ar.fina.tooth=2+9|lam-ar.medi.round=1+95|_c.seen.beh=0+0|meem-ar.init=0+425", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "مما", + "expectation": "alef-ar.fina=2+101|_c.seen.beh=1+0|meem-ar.medi.round=1+425|meem-ar.init.round=0+398", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "مما", + "expectation": "alef-ar.fina=2+101|_c.seen.beh=1+0|meem-ar.medi.round=1+425|meem-ar.init.round=0+398", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "ممح", + "expectation": "hah-ar.fina=2+417|meem-ar.medi.round=1@0,115+425|meem-ar.init.round=0@0,115+398", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "ممح", + "expectation": "hah-ar.fina=2+417|meem-ar.medi.round=1@0,115+425|meem-ar.init.round=0@0,115+398", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "منه", + "expectation": "heh-ar.fina=2+339|dotabove-ar.beh=1@2,343+0|_c.seen.beh=1+0|behDotless-ar.medi.med=1+128|_c.seen.beh=0+0|meem-ar.init=0+425", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "منه", + "expectation": "heh-ar.fina=2+339|dotabove-ar.beh=1@2,343+0|_c.seen.beh=1+0|behDotless-ar.medi.med=1+128|_c.seen.beh=0+0|meem-ar.init=0+425", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "مُل", + "expectation": "lam-ar.fina=2+177|damma-ar=0@-62,92+0|_c.seen.beh=0+0|meem-ar.init=0+425", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "مُل", + "expectation": "lam-ar.fina=2+177|damma-ar=0@-62,92+0|_c.seen.beh=0+0|meem-ar.init=0+425", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نسا", + "expectation": "alef-ar.fina=2+101|_c.seen.beh=1+0|seen-ar.medi.low=1+411|dotabove-ar=0@-2,339+0|_c.seen.beh=0+0|behDotless-ar.init.med=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نسا", + "expectation": "alef-ar.fina=2+101|_c.seen.beh=1+0|seen-ar.medi.low=1+411|dotabove-ar=0@-2,339+0|_c.seen.beh=0+0|behDotless-ar.init.med=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نسب", + "expectation": "dotbelow-ar=2@834,-111+0|behDotless-ar.fina=2+984|_c.seen.beh=1+0|seen-ar.medi.low=1+411|dotabove-ar=0@-2,339+0|_c.seen.beh=0+0|behDotless-ar.init.med=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نسب", + "expectation": "dotbelow-ar=2@834,-111+0|behDotless-ar.fina=2+984|_c.seen.beh=1+0|seen-ar.medi.low=1+411|dotabove-ar=0@-2,339+0|_c.seen.beh=0+0|behDotless-ar.init.med=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نسد", + "expectation": "dal-ar.fina=2+875|seen-ar.medi.low=1@-15,0+396|dotabove-ar=0@-2,339+0|_c.seen.beh=0+0|behDotless-ar.init.med=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نسد", + "expectation": "dal-ar.fina=2+875|seen-ar.medi.low=1@-15,0+396|dotabove-ar=0@-2,339+0|_c.seen.beh=0+0|behDotless-ar.init.med=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نسر", + "expectation": "reh-ar.fina=2+393|seen-ar.medi.low=1+411|dotabove-ar=0@-2,339+0|_c.seen.beh=0+0|behDotless-ar.init.med=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نسر", + "expectation": "reh-ar.fina=2+393|seen-ar.medi.low=1+411|dotabove-ar=0@-2,339+0|_c.seen.beh=0+0|behDotless-ar.init.med=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نسس", + "expectation": "seen-ar.fina=2+510|_c.seen.beh=1+0|seen-ar.medi.low=1+411|dotabove-ar=0@-2,339+0|_c.seen.beh=0+0|behDotless-ar.init.med=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نسس", + "expectation": "seen-ar.fina=2+510|_c.seen.beh=1+0|seen-ar.medi.low=1+411|dotabove-ar=0@-2,339+0|_c.seen.beh=0+0|behDotless-ar.init.med=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نسض", + "expectation": "dotabove-ar=2@398,247+0|sad-ar.fina=2+876|seen-ar.medi.low=1@-15,0+396|dotabove-ar=0@-2,339+0|_c.seen.beh=0+0|behDotless-ar.init.med=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نسض", + "expectation": "dotabove-ar=2@398,247+0|sad-ar.fina=2+876|seen-ar.medi.low=1@-15,0+396|dotabove-ar=0@-2,339+0|_c.seen.beh=0+0|behDotless-ar.init.med=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نسط", + "expectation": "tah-ar.fina=2+798|seen-ar.medi.low=1@-15,0+396|dotabove-ar=0@-2,339+0|_c.seen.beh=0+0|behDotless-ar.init.med=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نسط", + "expectation": "tah-ar.fina=2+798|seen-ar.medi.low=1@-15,0+396|dotabove-ar=0@-2,339+0|_c.seen.beh=0+0|behDotless-ar.init.med=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نسع", + "expectation": "ain-ar.fina=2+267|_c.seen.beh=1+0|seen-ar.medi.low=1+411|dotabove-ar=0@-2,339+0|_c.seen.beh=0+0|behDotless-ar.init.med=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نسع", + "expectation": "ain-ar.fina=2+267|_c.seen.beh=1+0|seen-ar.medi.low=1+411|dotabove-ar=0@-2,339+0|_c.seen.beh=0+0|behDotless-ar.init.med=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نسف", + "expectation": "dotabove-ar=2@609,319+0|fehDotless-ar.fina=2+997|_c.seen.beh=1+0|seen-ar.medi.low=1+411|dotabove-ar=0@-2,339+0|_c.seen.beh=0+0|behDotless-ar.init.med=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نسف", + "expectation": "dotabove-ar=2@609,319+0|fehDotless-ar.fina=2+997|_c.seen.beh=1+0|seen-ar.medi.low=1+411|dotabove-ar=0@-2,339+0|_c.seen.beh=0+0|behDotless-ar.init.med=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نسق", + "expectation": "twodotsverticalabove-ar=2@-62,265+0|qafDotless-ar.fina=2+373|_c.seen.meem=1@7,0+23|seen-ar.medi.low=1@-36,0+375|dotabove-ar=0@-2,339+0|_c.seen.beh=0+0|behDotless-ar.init.med=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نسق", + "expectation": "twodotsverticalabove-ar=2@-62,265+0|qafDotless-ar.fina=2+373|_c.seen.meem=1@7,0+23|seen-ar.medi.low=1@-36,0+375|dotabove-ar=0@-2,339+0|_c.seen.beh=0+0|behDotless-ar.init.med=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نسك", + "expectation": "kaf-ar.fina=2+889|seen-ar.medi.low=1@-15,0+396|dotabove-ar=0@-2,339+0|_c.seen.beh=0+0|behDotless-ar.init.med=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نسك", + "expectation": "kaf-ar.fina=2+889|seen-ar.medi.low=1@-15,0+396|dotabove-ar=0@-2,339+0|_c.seen.beh=0+0|behDotless-ar.init.med=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نسل", + "expectation": "lam-ar.fina=2+177|_c.seen.beh=1+0|seen-ar.medi.low=1+411|dotabove-ar=0@-2,339+0|_c.seen.beh=0+0|behDotless-ar.init.med=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نسل", + "expectation": "lam-ar.fina=2+177|_c.seen.beh=1+0|seen-ar.medi.low=1+411|dotabove-ar=0@-2,339+0|_c.seen.beh=0+0|behDotless-ar.init.med=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نسم", + "expectation": "meem-ar.fina=2+567|_c.seen.meem=1+16|seen-ar.medi.low=1@-36,0+375|dotabove-ar=0@-2,339+0|_c.seen.beh=0+0|behDotless-ar.init.med=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نسم", + "expectation": "meem-ar.fina=2+567|_c.seen.meem=1+16|seen-ar.medi.low=1@-36,0+375|dotabove-ar=0@-2,339+0|_c.seen.beh=0+0|behDotless-ar.init.med=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نسن", + "expectation": "dotabove-ar=2@-3,101+0|noonghunna-ar.fina=2+250|_c.hah.noon=1+-20|seen-ar.medi.low=1+411|dotabove-ar=0@-2,339+0|_c.seen.beh=0+0|behDotless-ar.init.med=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نسن", + "expectation": "dotabove-ar=2@-3,101+0|noonghunna-ar.fina=2+250|_c.hah.noon=1+-20|seen-ar.medi.low=1+411|dotabove-ar=0@-2,339+0|_c.seen.beh=0+0|behDotless-ar.init.med=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نسه", + "expectation": "heh-ar.fina=2+339|_c.seen.beh=1+0|seen-ar.medi.low=1+411|dotabove-ar=0@-2,339+0|_c.seen.beh=0+0|behDotless-ar.init.med=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نسه", + "expectation": "heh-ar.fina=2+339|_c.seen.beh=1+0|seen-ar.medi.low=1+411|dotabove-ar=0@-2,339+0|_c.seen.beh=0+0|behDotless-ar.init.med=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نسو", + "expectation": "waw-ar.fina=2+472|seen-ar.medi.low=1+411|dotabove-ar=0@-2,339+0|_c.seen.beh=0+0|behDotless-ar.init.med=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نسو", + "expectation": "waw-ar.fina=2+472|seen-ar.medi.low=1+411|dotabove-ar=0@-2,339+0|_c.seen.beh=0+0|behDotless-ar.init.med=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نسى", + "expectation": "seen_alefMaksura-ar.fina=1+343|dotabove-ar.beh=0@-9,392+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نسى", + "expectation": "seen_alefMaksura-ar.fina=1+343|dotabove-ar.beh=0@-9,392+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نسے", + "expectation": "yehbarree-ar.fina=2+297|seen-ar.medi.low=1@-32,0+379|dotabove-ar=0@-2,339+0|_c.seen.beh=0+0|behDotless-ar.init.med=0+360", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نسے", + "expectation": "yehbarree-ar.fina=2+297|seen-ar.medi.low=1@-32,0+379|dotabove-ar=0@-2,339+0|_c.seen.beh=0+0|behDotless-ar.init.med=0+360", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نشا", + "expectation": "alef-ar.fina=2+101|threedotshorizontalabove-ar.2=1@0,125+0|_c.seen.beh=1+0|seen-ar.medi.low=1+411|dotabove-ar=0@-2,339+0|_c.seen.beh=0+0|behDotless-ar.init.med=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نشا", + "expectation": "alef-ar.fina=2+101|threedotshorizontalabove-ar.2=1@0,125+0|_c.seen.beh=1+0|seen-ar.medi.low=1+411|dotabove-ar=0@-2,339+0|_c.seen.beh=0+0|behDotless-ar.init.med=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نعا", + "expectation": "alef-ar.fina=2+101|_c.ain.medi.beh=1+66|ain-ar.medi=1+220|dotabove-ar.beh=0@-9,392+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نعا", + "expectation": "alef-ar.fina=2+101|_c.ain.medi.beh=1+66|ain-ar.medi=1+220|dotabove-ar.beh=0@-9,392+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نعب", + "expectation": "dotbelow-ar=2@834,-111+0|behDotless-ar.fina=2+984|_c.ain.medi.beh=1+66|ain-ar.medi=1+220|dotabove-ar.beh=0@-9,392+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نعب", + "expectation": "dotbelow-ar=2@834,-111+0|behDotless-ar.fina=2+984|_c.ain.medi.beh=1+66|ain-ar.medi=1+220|dotabove-ar.beh=0@-9,392+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نعد", + "expectation": "dal-ar.fina=2+875|_c.ain.dal=1+47|ain-ar.medi=1+220|dotabove-ar.beh=0@-9,392+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نعد", + "expectation": "dal-ar.fina=2+875|_c.ain.dal=1+47|ain-ar.medi=1+220|dotabove-ar.beh=0@-9,392+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نعر", + "expectation": "reh-ar.fina=2+393|_c.ain.medi.reh=1+7|ain-ar.medi=1+220|dotabove-ar.beh=0@-9,392+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نعر", + "expectation": "reh-ar.fina=2+393|_c.ain.medi.reh=1+7|ain-ar.medi=1+220|dotabove-ar.beh=0@-9,392+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نعس", + "expectation": "seen-ar.fina=2+510|_c.ain.medi.beh=1+66|ain-ar.medi=1+220|dotabove-ar.beh=0@-9,392+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نعس", + "expectation": "seen-ar.fina=2+510|_c.ain.medi.beh=1+66|ain-ar.medi=1+220|dotabove-ar.beh=0@-9,392+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نعض", + "expectation": "dotabove-ar=2@398,247+0|sad-ar.fina=2+876|_c.ain.dal=1+47|ain-ar.medi=1+220|dotabove-ar.beh=0@-9,392+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نعض", + "expectation": "dotabove-ar=2@398,247+0|sad-ar.fina=2+876|_c.ain.dal=1+47|ain-ar.medi=1+220|dotabove-ar.beh=0@-9,392+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نعط", + "expectation": "tah-ar.fina=2+798|_c.ain.dal=1+47|ain-ar.medi=1+220|dotabove-ar.beh=0@-9,392+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نعط", + "expectation": "tah-ar.fina=2+798|_c.ain.dal=1+47|ain-ar.medi=1+220|dotabove-ar.beh=0@-9,392+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نعع", + "expectation": "ain-ar.fina=2+267|_c.ain.medi.beh=1+66|ain-ar.medi=1+220|dotabove-ar.beh=0@-9,392+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نعع", + "expectation": "ain-ar.fina=2+267|_c.ain.medi.beh=1+66|ain-ar.medi=1+220|dotabove-ar.beh=0@-9,392+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نعف", + "expectation": "dotabove-ar=2@609,319+0|fehDotless-ar.fina=2+997|_c.ain.medi.beh=1@2,0+68|ain-ar.medi=1+220|dotabove-ar.beh=0@-9,392+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نعف", + "expectation": "dotabove-ar=2@609,319+0|fehDotless-ar.fina=2+997|_c.ain.medi.beh=1@2,0+68|ain-ar.medi=1+220|dotabove-ar.beh=0@-9,392+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نعق", + "expectation": "twodotsverticalabove-ar=2@-62,265+0|qafDotless-ar.fina=2+373|_c.ain.meem=1@8,0+43|ain-ar.medi=1+220|dotabove-ar.beh=0@-9,392+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نعق", + "expectation": "twodotsverticalabove-ar=2@-62,265+0|qafDotless-ar.fina=2+373|_c.ain.meem=1@8,0+43|ain-ar.medi=1+220|dotabove-ar.beh=0@-9,392+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نعك", + "expectation": "kaf-ar.fina=2+889|_c.ain.dal=1+47|ain-ar.medi=1+220|dotabove-ar.beh=0@-9,392+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نعك", + "expectation": "kaf-ar.fina=2+889|_c.ain.dal=1+47|ain-ar.medi=1+220|dotabove-ar.beh=0@-9,392+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نعل", + "expectation": "lam-ar.fina=2+177|_c.ain.medi.beh=1+66|ain-ar.medi=1+220|dotabove-ar.beh=0@-9,392+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نعل", + "expectation": "lam-ar.fina=2+177|_c.ain.medi.beh=1+66|ain-ar.medi=1+220|dotabove-ar.beh=0@-9,392+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نعم", + "expectation": "meem-ar.fina=2+567|_c.ain.meem=1+35|ain-ar.medi=1+220|dotabove-ar.beh=0@-9,392+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نعم", + "expectation": "meem-ar.fina=2+567|_c.ain.meem=1+35|ain-ar.medi=1+220|dotabove-ar.beh=0@-9,392+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نعن", + "expectation": "dotabove-ar=2@-3,101+0|noonghunna-ar.fina=2+250|_c.hah.noon=1+-20|ain-ar.medi=1+220|dotabove-ar.beh=0@-9,392+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نعن", + "expectation": "dotabove-ar=2@-3,101+0|noonghunna-ar.fina=2+250|_c.hah.noon=1+-20|ain-ar.medi=1+220|dotabove-ar.beh=0@-9,392+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نعه", + "expectation": "heh-ar.fina=2+339|_c.ain.medi.beh=1+66|ain-ar.medi=1+220|dotabove-ar.beh=0@-9,392+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نعه", + "expectation": "heh-ar.fina=2+339|_c.ain.medi.beh=1+66|ain-ar.medi=1+220|dotabove-ar.beh=0@-9,392+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نعو", + "expectation": "waw-ar.fina.round=2+492|_c.ain.meem=1@-7,0+28|ain-ar.medi=1+220|dotabove-ar.beh=0@-9,392+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نعو", + "expectation": "waw-ar.fina.round=2+492|_c.ain.meem=1@-7,0+28|ain-ar.medi=1+220|dotabove-ar.beh=0@-9,392+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نعى", + "expectation": "alefMaksura-ar.fina=2+282|_c.ain.yeh=1@-20,0+-5|ain-ar.medi=1+220|dotabove-ar.beh=0@-9,392+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نعى", + "expectation": "alefMaksura-ar.fina=2+282|_c.ain.yeh=1@-20,0+-5|ain-ar.medi=1+220|dotabove-ar.beh=0@-9,392+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نعے", + "expectation": "yehbarree-ar.fina=2+297|_c.ain.yeh=1@-5,0+10|ain-ar.medi=1+220|dotabove-ar.beh=0@-9,392+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+540", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نعے", + "expectation": "yehbarree-ar.fina=2+297|_c.ain.yeh=1@-5,0+10|ain-ar.medi=1+220|dotabove-ar.beh=0@-9,392+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+540", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نـا", + "expectation": "alef-ar.fina.kashida=2+219|kashida-ar=1+100|dotabove-ar=0@2,299+0|behDotless-ar.init=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نـا", + "expectation": "alef-ar.fina.kashida=2+219|kashida-ar=1+100|dotabove-ar=0@2,299+0|behDotless-ar.init=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نفا", + "expectation": "alef-ar.fina=2+101|dotabove-ar=1@1,329+0|_c.feh.medi.beh=1+0|fehDotless-ar.medi=1+377|dotabove-ar=0@2,299+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نفا", + "expectation": "alef-ar.fina=2+101|dotabove-ar=1@1,329+0|_c.feh.medi.beh=1+0|fehDotless-ar.medi=1+377|dotabove-ar=0@2,299+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نفب", + "expectation": "dotbelow-ar=2@834,-111+0|behDotless-ar.fina=2+984|dotabove-ar=1@1,329+0|_c.feh.medi.beh=1+0|fehDotless-ar.medi=1+377|dotabove-ar=0@2,299+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نفب", + "expectation": "dotbelow-ar=2@834,-111+0|behDotless-ar.fina=2+984|dotabove-ar=1@1,329+0|_c.feh.medi.beh=1+0|fehDotless-ar.medi=1+377|dotabove-ar=0@2,299+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نفد", + "expectation": "dal-ar.fina=2+875|dotabove-ar=1@-6,329+0|_c.feh.medi.dal=1+71|fehDotless-ar.medi=1@-78,0+299|dotabove-ar=0@2,299+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نفد", + "expectation": "dal-ar.fina=2+875|dotabove-ar=1@-6,329+0|_c.feh.medi.dal=1+71|fehDotless-ar.medi=1@-78,0+299|dotabove-ar=0@2,299+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نفر", + "expectation": "reh-ar.fina=2+393|dotabove-ar=1@-22,329+0|_c.feh.medi.reh=1+47|fehDotless-ar.medi=1@-70,0+307|dotabove-ar=0@2,299+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نفر", + "expectation": "reh-ar.fina=2+393|dotabove-ar=1@-22,329+0|_c.feh.medi.reh=1+47|fehDotless-ar.medi=1@-70,0+307|dotabove-ar=0@2,299+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نفس", + "expectation": "seen-ar.fina.low=2+487|dotabove-ar=1@1,329+0|_c.feh.medi.beh=1+0|fehDotless-ar.medi=1+377|dotabove-ar=0@2,299+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نفس", + "expectation": "seen-ar.fina.low=2+487|dotabove-ar=1@1,329+0|_c.feh.medi.beh=1+0|fehDotless-ar.medi=1+377|dotabove-ar=0@2,299+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نفض", + "expectation": "dotabove-ar=2@398,247+0|sad-ar.fina=2+876|dotabove-ar=1@-6,329+0|_c.feh.medi.dal=1+71|fehDotless-ar.medi=1@-78,0+299|dotabove-ar=0@2,299+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نفض", + "expectation": "dotabove-ar=2@398,247+0|sad-ar.fina=2+876|dotabove-ar=1@-6,329+0|_c.feh.medi.dal=1+71|fehDotless-ar.medi=1@-78,0+299|dotabove-ar=0@2,299+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نفط", + "expectation": "tah-ar.fina=2+798|dotabove-ar=1@-6,329+0|_c.feh.medi.dal=1+71|fehDotless-ar.medi=1@-78,0+299|dotabove-ar=0@2,299+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نفط", + "expectation": "tah-ar.fina=2+798|dotabove-ar=1@-6,329+0|_c.feh.medi.dal=1+71|fehDotless-ar.medi=1@-78,0+299|dotabove-ar=0@2,299+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نفع", + "expectation": "ain-ar.fina=2+267|dotabove-ar=1@1,329+0|_c.feh.medi.beh=1+0|fehDotless-ar.medi=1+377|dotabove-ar=0@2,299+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نفع", + "expectation": "ain-ar.fina=2+267|dotabove-ar=1@1,329+0|_c.feh.medi.beh=1+0|fehDotless-ar.medi=1+377|dotabove-ar=0@2,299+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نفف", + "expectation": "dotabove-ar=2@609,319+0|fehDotless-ar.fina=2+997|dotabove-ar=1@1,329+0|_c.feh.medi.beh=1+0|fehDotless-ar.medi=1+377|dotabove-ar=0@2,299+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نفف", + "expectation": "dotabove-ar=2@609,319+0|fehDotless-ar.fina=2+997|dotabove-ar=1@1,329+0|_c.feh.medi.beh=1+0|fehDotless-ar.medi=1+377|dotabove-ar=0@2,299+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نفق", + "expectation": "twodotsverticalabove-ar=2@-62,265+0|qafDotless-ar.fina=2+373|dotabove-ar=1@-16,329+0|_c.feh.medi.meem=1@7,0+54|fehDotless-ar.medi=1@-71,0+306|dotabove-ar=0@2,299+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نفق", + "expectation": "twodotsverticalabove-ar=2@-62,265+0|qafDotless-ar.fina=2+373|dotabove-ar=1@-16,329+0|_c.feh.medi.meem=1@7,0+54|fehDotless-ar.medi=1@-71,0+306|dotabove-ar=0@2,299+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نفك", + "expectation": "kaf-ar.fina=2+889|dotabove-ar=1@-6,329+0|_c.feh.medi.dal=1+71|fehDotless-ar.medi=1@-78,0+299|dotabove-ar=0@2,299+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نفك", + "expectation": "kaf-ar.fina=2+889|dotabove-ar=1@-6,329+0|_c.feh.medi.dal=1+71|fehDotless-ar.medi=1@-78,0+299|dotabove-ar=0@2,299+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نفل", + "expectation": "lam-ar.fina=2+177|dotabove-ar=1@1,329+0|_c.feh.medi.beh=1+0|fehDotless-ar.medi=1+377|dotabove-ar=0@2,299+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نفل", + "expectation": "lam-ar.fina=2+177|dotabove-ar=1@1,329+0|_c.feh.medi.beh=1+0|fehDotless-ar.medi=1+377|dotabove-ar=0@2,299+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نفم", + "expectation": "meem-ar.fina=2+567|dotabove-ar=1@-23,329+0|_c.feh.medi.meem=1+47|fehDotless-ar.medi=1@-71,0+306|dotabove-ar=0@2,299+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نفم", + "expectation": "meem-ar.fina=2+567|dotabove-ar=1@-23,329+0|_c.feh.medi.meem=1+47|fehDotless-ar.medi=1@-71,0+306|dotabove-ar=0@2,299+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نفن", + "expectation": "dotabove-ar=2@-3,101+0|noonghunna-ar.fina=2+250|dotabove-ar=1@-44,329+0|_c.hah.noon=1+-20|fehDotless-ar.medi=1@-25,0+352|dotabove-ar=0@2,299+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نفن", + "expectation": "dotabove-ar=2@-3,101+0|noonghunna-ar.fina=2+250|dotabove-ar=1@-44,329+0|_c.hah.noon=1+-20|fehDotless-ar.medi=1@-25,0+352|dotabove-ar=0@2,299+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نفه", + "expectation": "heh-ar.fina=2+339|dotabove-ar=1@1,329+0|_c.feh.medi.beh=1+0|fehDotless-ar.medi=1+377|dotabove-ar=0@2,299+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نفه", + "expectation": "heh-ar.fina=2+339|dotabove-ar=1@1,329+0|_c.feh.medi.beh=1+0|fehDotless-ar.medi=1+377|dotabove-ar=0@2,299+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نفو", + "expectation": "waw-ar.fina=2+472|dotabove-ar=1@-4,329+0|_c.feh.medi.meem=1@19,0+66|fehDotless-ar.medi=1@-71,0+306|dotabove-ar=0@2,299+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نفو", + "expectation": "waw-ar.fina=2+472|dotabove-ar=1@-4,329+0|_c.feh.medi.meem=1@19,0+66|fehDotless-ar.medi=1@-71,0+306|dotabove-ar=0@2,299+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نفى", + "expectation": "alefMaksura-ar.fina=2+282|dotabove-ar=1@-59,329+0|_c.feh.medi.meem=1@-36,0+11|fehDotless-ar.medi=1@-71,0+306|dotabove-ar=0@2,299+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نفى", + "expectation": "alefMaksura-ar.fina=2+282|dotabove-ar=1@-59,329+0|_c.feh.medi.meem=1@-36,0+11|fehDotless-ar.medi=1@-71,0+306|dotabove-ar=0@2,299+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نفے", + "expectation": "yehbarree-ar.fina=2+297|dotabove-ar=1@-46,329+0|_c.feh.medi.reh=1@-24,0+23|fehDotless-ar.medi=1@-70,0+307|dotabove-ar=0@2,299+0|_c.seen.beh=0+0|behDotless-ar.init=0+350", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نفے", + "expectation": "yehbarree-ar.fina=2+297|dotabove-ar=1@-46,329+0|_c.feh.medi.reh=1@-24,0+23|fehDotless-ar.medi=1@-70,0+307|dotabove-ar=0@2,299+0|_c.seen.beh=0+0|behDotless-ar.init=0+350", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نقد", + "expectation": "dal-ar.fina=2+875|twodotsverticalabove-ar=1@-36,337+0|_c.feh.medi.dal=1+71|fehDotless-ar.medi=1@-78,0+299|dotabove-ar=0@2,299+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نقد", + "expectation": "dal-ar.fina=2+875|twodotsverticalabove-ar=1@-36,337+0|_c.feh.medi.dal=1+71|fehDotless-ar.medi=1@-78,0+299|dotabove-ar=0@2,299+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "ننا", + "expectation": "alef-ar.fina=2+101|dotabove-ar.beh=1@8,294+0|_c.seen.beh=1+0|behDotless-ar.medi=1+128|dotabove-ar.beh=0@-9,392+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "ننا", + "expectation": "alef-ar.fina=2+101|dotabove-ar.beh=1@8,294+0|_c.seen.beh=1+0|behDotless-ar.medi=1+128|dotabove-ar.beh=0@-9,392+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نهم", + "expectation": "meem-ar.fina.round=2+554|heh-ar.medi.round=1+323|dotabove-ar=0@-2,339+0|_c.seen.beh=0+0|behDotless-ar.init.med=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نهم", + "expectation": "meem-ar.fina.round=2+554|heh-ar.medi.round=1+323|dotabove-ar=0@-2,339+0|_c.seen.beh=0+0|behDotless-ar.init.med=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نين", + "expectation": "dotabove-ar=2@-3,101+0|noonghunna-ar.fina=2+250|twodotsverticalbelow-ar=1@55,-137+0|behDotless-ar.medi.round=1+108|dotabove-ar.beh=0@-9,392+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نين", + "expectation": "dotabove-ar=2@-3,101+0|noonghunna-ar.fina=2+250|twodotsverticalbelow-ar=1@55,-137+0|behDotless-ar.medi.round=1+108|dotabove-ar.beh=0@-9,392+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "هسي", + "expectation": "twodotsverticalbelow-ar=1@339,-337+0|seen_alefMaksura-ar.fina=1+343|_c.feh.medi.beh=0+0|heh-ar.init=0+361", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "هسي", + "expectation": "twodotsverticalbelow-ar=1@339,-337+0|seen_alefMaksura-ar.fina=1+343|_c.feh.medi.beh=0+0|heh-ar.init=0+361", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "وسے", + "expectation": "yehbarree-ar.fina.baseline=2+297|seen-ar.init=1@-32,110+736|waw-ar=0@380,0+889", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "وسے", + "expectation": "yehbarree-ar.fina.baseline=2+297|seen-ar.init=1@-32,110+736|waw-ar=0+509", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "وصے", + "expectation": "yehbarree-ar.fina.baseline=2+297|sad-ar.init=1@0,110+765|waw-ar=0@395,0+904", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "وصے", + "expectation": "yehbarree-ar.fina.baseline=2+297|sad-ar.init=1@0,110+765|waw-ar=0@15,0+524", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "وفے", + "expectation": "yehbarree-ar.fina.baseline=2+297|dotabove-ar=1@-67,483+0|fehDotless-ar.init.yeh=1@0,110+768|waw-ar=0@320,0+829", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "وفے", + "expectation": "yehbarree-ar.fina.baseline=2+297|dotabove-ar=1@-67,483+0|fehDotless-ar.init.yeh=1@0,110+768|waw-ar=0@-60,0+449", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "ولح", + "expectation": "hah-ar.fina.alt=2+407|lam-ar.init.hah1.alt=1@63,0+578|waw-ar=0@400,0+909", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "ولح", + "expectation": "hah-ar.fina.alt=2+407|lam-ar.init.hah1.alt=1@63,0+578|waw-ar=0@20,0+529", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "ىِٕ", + "expectation": "kasra-ar=0@155,-321+0|alefMaksura-ar=0+395", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "ىِٕ", + "expectation": "kasra-ar=0@155,-321+0|alefMaksura-ar=0+395", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "يعج", + "expectation": "dotbelow-ar=2@571,-122+0|hah-ar.fina=2+417|ain-ar.medi=1@0,115+220|twodotsverticalbelow-ar=0@131,92+0|_c.seen.beh=0@0,115+0|behDotless-ar.init.high=0@0,115+240", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "يعج", + "expectation": "dotbelow-ar=2@571,-122+0|hah-ar.fina=2+417|ain-ar.medi=1@0,115+220|twodotsverticalbelow-ar=0@131,92+0|_c.seen.beh=0@0,115+0|behDotless-ar.init.high=0@0,115+240", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "يعظ", + "expectation": "dotabove-ar=2@350,247+0|tah-ar.fina=2+798|_c.ain.dal=1+47|ain-ar.medi=1+220|twodotsverticalbelow-ar=0@81,-73+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "يعظ", + "expectation": "dotabove-ar=2@350,247+0|tah-ar.fina=2+798|_c.ain.dal=1+47|ain-ar.medi=1+220|twodotsverticalbelow-ar=0@81,-73+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "يقظ", + "expectation": "dotabove-ar=2@350,247+0|tah-ar.fina=2+798|twodotsverticalabove-ar=1@-36,337+0|_c.feh.medi.dal=1+71|fehDotless-ar.medi=1@-78,0+299|twodotsverticalbelow-ar=0@72,-73+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "يقظ", + "expectation": "dotabove-ar=2@350,247+0|tah-ar.fina=2+798|twodotsverticalabove-ar=1@-36,337+0|_c.feh.medi.dal=1+71|fehDotless-ar.medi=1@-78,0+299|twodotsverticalbelow-ar=0@72,-73+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "يمر", + "expectation": "reh-ar.fina=2+393|meem-ar.medi.round2=1@20,0+418|twodotsverticalbelow-ar=0@72,-73+0|behDotless-ar.init=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "يمر", + "expectation": "reh-ar.fina=2+393|meem-ar.medi.round2=1@20,0+418|twodotsverticalbelow-ar=0@72,-73+0|behDotless-ar.init=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "يمن", + "expectation": "dotabove-ar=2@-3,101+0|noonghunna-ar.fina=2+250|meem-ar.medi.round2=1+398|twodotsverticalbelow-ar=0@72,-73+0|behDotless-ar.init=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "يمن", + "expectation": "dotabove-ar=2@-3,101+0|noonghunna-ar.fina=2+250|meem-ar.medi.round2=1+398|twodotsverticalbelow-ar=0@72,-73+0|behDotless-ar.init=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "وقح لا", + "expectation": "lam_alef-ar=4+542|space=3+400|hah-ar.fina=2+417|twodotsverticalabove-ar=1@-86,496+0|fehDotless-ar.init.hah=1@11,115+479|waw-ar=0@320,0+829", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "وقح لا", + "expectation": "lam_alef-ar=4+542|space.mark=3+0|hah-ar.fina=2@20,0+437|twodotsverticalabove-ar=1@-86,496+0|fehDotless-ar.init.hah=1@11,115+479|waw-ar=0@-60,0+449", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "ءامن", + "expectation": "dotabove-ar=3@-3,101+0|noonghunna-ar.fina=3+250|meem-ar.init.round=2+398|madda-ar=1@241,551+0|alef-ar=1@379,0+1037|hamza-ar=0+0", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "ءامن", + "expectation": "dotabove-ar=3@-3,101+0|noonghunna-ar.fina=3+250|meem-ar.init.round=2+398|madda-ar=1@-139,551+0|alef-ar=1@-1,0+657|hamza-ar=0+0", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "أضاء", + "expectation": "madda-ar=3@-151,560+0|alef-ar.fina=2+101|dotabove-ar=1@310,247+0|_c.seen.beh=1+0|sad-ar.init=1+765|fatha-ar=0@437,547+0|alef-ar=0@365,0+1023", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "أضاء", + "expectation": "madda-ar=3@-151,560+0|alef-ar.fina=2+101|dotabove-ar=1@310,247+0|_c.seen.beh=1+0|sad-ar.init=1+765|fatha-ar=0@57,547+0|alef-ar=0@-15,0+643", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "ابطح", + "expectation": "hah-ar.fina=3+417|tah-ar.medi.hah1=2+758|dotbelow-ar=1@51,69+0|behDotless-ar.init=1@-21,115+109|alef-ar=0@390,0+1048", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "ابطح", + "expectation": "hah-ar.fina=3+417|tah-ar.medi.hah1=2+758|dotbelow-ar=1@51,69+0|behDotless-ar.init=1@-21,115+109|alef-ar=0@10,0+668", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "اطيح", + "expectation": "hah-ar.fina=3+417|twodotsverticalbelow-ar=2@404,-42+0|behDotless-ar.medi=2@0,115+128|_c.seen.beh=1@0,115+0|tah-ar.init.hah1=1+765|alef-ar=0@400,0+1058", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "اطيح", + "expectation": "hah-ar.fina=3+417|twodotsverticalbelow-ar=2@404,-42+0|behDotless-ar.medi=2@0,115+128|_c.seen.beh=1@0,115+0|tah-ar.init.hah1=1+765|alef-ar=0@20,0+678", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "افنے", + "expectation": "yehbarree-ar.fina=3+297|dotabove-ar.beh=2@8,294+0|behDotless-ar.medi=2+128|dotabove-ar=1@-1,373+0|_c.feh.init.beh=1+174|fehDotless-ar.init=1@-114,0+360|alef-ar=0@387,0+1045", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "افنے", + "expectation": "yehbarree-ar.fina=3+297|dotabove-ar.beh=2@8,294+0|behDotless-ar.medi=2+128|dotabove-ar=1@-1,373+0|_c.feh.init.beh=1+174|fehDotless-ar.init=1@-114,0+360|alef-ar=0@7,0+665", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "الحا", + "expectation": "alef-ar.fina=3+101|_c.hah.beh=2+7|hah-ar.medi.alt=2+135|lam-ar.init.hah1.alt=1@63,5+578|alef-ar=0@400,0+1058", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "الحا", + "expectation": "alef-ar.fina=3+101|_c.hah.beh=2+7|hah-ar.medi.alt=2+135|lam-ar.init.hah1.alt=1@63,5+578|alef-ar=0@20,0+678", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "الحج", + "expectation": "dotbelow-ar=3@571,-122+0|hah-ar.fina=3+417|hah-ar.medi.hah.alt=2@0,115+109|lam-ar.init.hah2.alt=1@63,5+578|alef-ar=0@400,0+1058", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "الحج", + "expectation": "dotbelow-ar=3@571,-122+0|hah-ar.fina=3+417|hah-ar.medi.hah.alt=2@0,115+109|lam-ar.init.hah2.alt=1@63,5+578|alef-ar=0@20,0+678", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "الله", + "expectation": "lam_lam_heh-ar=1+573|alef-ar=0@395,0+1053", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "الله", + "expectation": "lam_lam_heh-ar=1+573|alef-ar=0@15,0+673", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "انحح", + "expectation": "hah-ar.fina=3+417|hah-ar.medi.hah.alt=2@0,115+109|dotabove-ar.beh=1@44,499+0|behDotless-ar.init.hah=1@63,105+572|alef-ar=0@400,0+1058", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "انحح", + "expectation": "hah-ar.fina=3+417|hah-ar.medi.hah.alt=2@0,115+109|dotabove-ar.beh=1@44,499+0|behDotless-ar.init.hah=1@63,105+572|alef-ar=0@20,0+678", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "اوتے", + "expectation": "yehbarree-ar.fina.baseline=3+297|twodotsverticalabove-ar=2@-28,417+0|behDotless-ar.init=2@0,110+770|waw-ar=1@380,0+889|alef-ar=0@378,0+1036", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "اوتے", + "expectation": "yehbarree-ar.fina.baseline=3+297|twodotsverticalabove-ar=2@-28,417+0|behDotless-ar.init=2@0,110+770|waw-ar=1+509|alef-ar=0@-2,0+656", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بببا", + "expectation": "alef-ar.fina=3+101|dotbelow-ar=2@9,-110+0|_c.seen.beh=2+0|behDotless-ar.medi=2+128|dotbelow-ar=1@14,-110+0|_c.seen.beh=1+0|behDotless-ar.medi.high=1+128|dotbelow-ar=0@72,-46+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بببا", + "expectation": "alef-ar.fina=3+101|dotbelow-ar=2@9,-110+0|_c.seen.beh=2+0|behDotless-ar.medi=2+128|dotbelow-ar=1@14,-110+0|_c.seen.beh=1+0|behDotless-ar.medi.high=1+128|dotbelow-ar=0@72,-46+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "ببسه", + "expectation": "heh-ar.fina=3+339|_c.seen.beh=2+0|seen-ar.medi.low=2+411|dotbelow-ar=1@17,-110+0|_c.seen.beh=1+0|behDotless-ar.medi.med=1+128|dotbelow-ar=0@81,-46+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "ببسه", + "expectation": "heh-ar.fina=3+339|_c.seen.beh=2+0|seen-ar.medi.low=2+411|dotbelow-ar=1@17,-110+0|_c.seen.beh=1+0|behDotless-ar.medi.med=1+128|dotbelow-ar=0@81,-46+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "ببسي", + "expectation": "twodotsverticalbelow-ar=2@339,-337+0|seen_alefMaksura-ar.fina=2+343|dotbelow-ar=1@14,-110+0|_c.seen.beh=1+0|behDotless-ar.medi.high=1+128|dotbelow-ar=0@72,-46+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "ببسي", + "expectation": "twodotsverticalbelow-ar=2@339,-337+0|seen_alefMaksura-ar.fina=2+343|dotbelow-ar=1@14,-110+0|_c.seen.beh=1+0|behDotless-ar.medi.high=1+128|dotbelow-ar=0@72,-46+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بتمح", + "expectation": "hah-ar.fina=3+417|meem-ar.medi.round=2@0,115+425|twodotsverticalabove-ar.beh=1@-59,393+0|behDotless-ar.medi.round=1@0,115+108|dotbelow-ar=0@81,69+0|_c.seen.beh=0@0,115+0|behDotless-ar.init.high=0@0,115+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بتمح", + "expectation": "hah-ar.fina=3+417|meem-ar.medi.round=2@0,115+425|twodotsverticalabove-ar.beh=1@-59,393+0|behDotless-ar.medi.round=1@0,115+108|dotbelow-ar=0@81,69+0|_c.seen.beh=0@0,115+0|behDotless-ar.init.high=0@0,115+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بسبه", + "expectation": "heh-ar.fina=3+339|dotbelow-ar=2@17,-110+0|_c.seen.beh=2+0|behDotless-ar.medi.med=2+128|_c.seen.beh=1+0|seen-ar.medi.low=1+411|dotbelow-ar=0@72,-46+0|_c.seen.beh=0+0|behDotless-ar.init.med=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بسبه", + "expectation": "heh-ar.fina=3+339|dotbelow-ar=2@17,-110+0|_c.seen.beh=2+0|behDotless-ar.medi.med=2+128|_c.seen.beh=1+0|seen-ar.medi.low=1+411|dotbelow-ar=0@72,-46+0|_c.seen.beh=0+0|behDotless-ar.init.med=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بسسي", + "expectation": "twodotsverticalbelow-ar=2@339,-337+0|seen_alefMaksura-ar.fina=2+343|_c.seen.beh=1+0|seen-ar.medi.low=1+411|dotbelow-ar=0@72,-46+0|_c.seen.beh=0+0|behDotless-ar.init.med=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بسسي", + "expectation": "twodotsverticalbelow-ar=2@339,-337+0|seen_alefMaksura-ar.fina=2+343|_c.seen.beh=1+0|seen-ar.medi.low=1+411|dotbelow-ar=0@72,-46+0|_c.seen.beh=0+0|behDotless-ar.init.med=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بصبا", + "expectation": "alef-ar.fina=3+101|dotbelow-ar=2@9,-110+0|_c.seen.beh=2+0|behDotless-ar.medi=2+128|_c.seen.beh=1+0|sad-ar.medi=1+758|dotbelow-ar=0@51,-46+0|behDotless-ar.init=0@-21,0+109", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بصبا", + "expectation": "alef-ar.fina=3+101|dotbelow-ar=2@9,-110+0|_c.seen.beh=2+0|behDotless-ar.medi=2+128|_c.seen.beh=1+0|sad-ar.medi=1+758|dotbelow-ar=0@51,-46+0|behDotless-ar.init=0@-21,0+109", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بصسي", + "expectation": "twodotsverticalbelow-ar=2@339,-337+0|seen_alefMaksura-ar.fina=2+343|_c.seen.beh=1+0|sad-ar.medi=1+758|dotbelow-ar=0@51,-46+0|behDotless-ar.init=0@-21,0+109", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بصسي", + "expectation": "twodotsverticalbelow-ar=2@339,-337+0|seen_alefMaksura-ar.fina=2+343|_c.seen.beh=1+0|sad-ar.medi=1+758|dotbelow-ar=0@51,-46+0|behDotless-ar.init=0@-21,0+109", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بطبا", + "expectation": "alef-ar.fina=3+101|dotbelow-ar=2@9,-110+0|_c.seen.beh=2+0|behDotless-ar.medi=2+128|_c.seen.beh=1+0|tah-ar.medi=1+758|dotbelow-ar=0@51,-46+0|behDotless-ar.init=0@-21,0+109", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بطبا", + "expectation": "alef-ar.fina=3+101|dotbelow-ar=2@9,-110+0|_c.seen.beh=2+0|behDotless-ar.medi=2+128|_c.seen.beh=1+0|tah-ar.medi=1+758|dotbelow-ar=0@51,-46+0|behDotless-ar.init=0@-21,0+109", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بطسي", + "expectation": "twodotsverticalbelow-ar=2@339,-337+0|seen_alefMaksura-ar.fina=2+343|_c.seen.beh=1+0|tah-ar.medi=1+758|dotbelow-ar=0@51,-46+0|behDotless-ar.init=0@-21,0+109", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بطسي", + "expectation": "twodotsverticalbelow-ar=2@339,-337+0|seen_alefMaksura-ar.fina=2+343|_c.seen.beh=1+0|tah-ar.medi=1+758|dotbelow-ar=0@51,-46+0|behDotless-ar.init=0@-21,0+109", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بعبه", + "expectation": "heh-ar.fina=3+339|dotbelow-ar=2@17,-110+0|_c.seen.beh=2+0|behDotless-ar.medi.med=2+128|_c.ain.medi.beh=1+66|ain-ar.medi=1+220|dotbelow-ar=0@81,-46+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بعبه", + "expectation": "heh-ar.fina=3+339|dotbelow-ar=2@17,-110+0|_c.seen.beh=2+0|behDotless-ar.medi.med=2+128|_c.ain.medi.beh=1+66|ain-ar.medi=1+220|dotbelow-ar=0@81,-46+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بعجل", + "expectation": "lam-ar.fina=3+177|dotbelow-ar=2@220,-112+0|_c.hah.beh=2+7|hah-ar.medi=2+133|ain-ar.medi=1@0,122+220|dotbelow-ar=0@131,126+0|_c.seen.beh=0@0,122+0|behDotless-ar.init.high=0@0,122+240", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بعجل", + "expectation": "lam-ar.fina=3+177|dotbelow-ar=2@220,-112+0|_c.hah.beh=2+7|hah-ar.medi=2+133|ain-ar.medi=1@0,122+220|dotbelow-ar=0@131,126+0|_c.seen.beh=0@0,122+0|behDotless-ar.init.high=0@0,122+240", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بعسي", + "expectation": "twodotsverticalbelow-ar=2@339,-337+0|seen_alefMaksura-ar.fina=2+343|_c.ain.medi.beh=1+66|ain-ar.medi=1+220|dotbelow-ar=0@81,-46+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بعسي", + "expectation": "twodotsverticalbelow-ar=2@339,-337+0|seen_alefMaksura-ar.fina=2+343|_c.ain.medi.beh=1+66|ain-ar.medi=1+220|dotbelow-ar=0@81,-46+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بــك", + "expectation": "kaf-ar.fina=3+889|kashida-ar=2+100|kashida-ar=1+100|dotbelow-ar=0@72,-46+0|behDotless-ar.init=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بــك", + "expectation": "kaf-ar.fina=3+889|kashida-ar=2+100|kashida-ar=1+100|dotbelow-ar=0@72,-46+0|behDotless-ar.init=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بفبه", + "expectation": "heh-ar.fina=3+339|dotbelow-ar=2@17,-110+0|_c.seen.beh=2+0|behDotless-ar.medi.med=2+128|dotabove-ar=1@1,329+0|_c.feh.medi.beh=1+0|fehDotless-ar.medi=1+377|dotbelow-ar=0@72,-46+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بفبه", + "expectation": "heh-ar.fina=3+339|dotbelow-ar=2@17,-110+0|_c.seen.beh=2+0|behDotless-ar.medi.med=2+128|dotabove-ar=1@1,329+0|_c.feh.medi.beh=1+0|fehDotless-ar.medi=1+377|dotbelow-ar=0@72,-46+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بفسي", + "expectation": "twodotsverticalbelow-ar=2@339,-337+0|seen_alefMaksura-ar.fina=2+343|dotabove-ar=1@1,329+0|_c.feh.medi.beh=1+0|fehDotless-ar.medi=1+377|dotbelow-ar=0@72,-46+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بفسي", + "expectation": "twodotsverticalbelow-ar=2@339,-337+0|seen_alefMaksura-ar.fina=2+343|dotabove-ar=1@1,329+0|_c.feh.medi.beh=1+0|fehDotless-ar.medi=1+377|dotbelow-ar=0@72,-46+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بكسي", + "expectation": "twodotsverticalbelow-ar=2@339,-337+0|seen_alefMaksura-ar.fina=2+343|kaf-ar.medi.alt=1@-5,0+753|dotbelow-ar=0@51,-46+0|behDotless-ar.init=0@-21,0+109", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بكسي", + "expectation": "twodotsverticalbelow-ar=2@339,-337+0|seen_alefMaksura-ar.fina=2+343|kaf-ar.medi.alt=1@-5,0+753|dotbelow-ar=0@51,-46+0|behDotless-ar.init=0@-21,0+109", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بكـا", + "expectation": "alef-ar.fina.kashida=3+219|kashida-ar=2+100|kaf-ar.medi=1+758|dotbelow-ar=0@51,-46+0|behDotless-ar.init=0@-21,0+109", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بكـا", + "expectation": "alef-ar.fina.kashida=3+219|kashida-ar=2+100|kaf-ar.medi=1+758|dotbelow-ar=0@51,-46+0|behDotless-ar.init=0@-21,0+109", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بكمم", + "expectation": "meem-ar.fina.round=3+554|meem-ar.medi.round2=2+398|kaf-ar.medi.alt=1@-8,0+750|dotbelow-ar=0@51,-46+0|behDotless-ar.init=0@-21,0+109", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بكمم", + "expectation": "meem-ar.fina.round=3+554|meem-ar.medi.round2=2+398|kaf-ar.medi.alt=1@-8,0+750|dotbelow-ar=0@51,-46+0|behDotless-ar.init=0@-21,0+109", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بلبا", + "expectation": "alef-ar.fina=3+101|dotbelow-ar=2@9,-110+0|_c.seen.beh=2+0|behDotless-ar.medi=2+128|_c.seen.beh=1+0|lam-ar.medi=1+125|dotbelow-ar=0@72,-46+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بلبا", + "expectation": "alef-ar.fina=3+101|dotbelow-ar=2@9,-110+0|_c.seen.beh=2+0|behDotless-ar.medi=2+128|_c.seen.beh=1+0|lam-ar.medi=1+125|dotbelow-ar=0@72,-46+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بلسي", + "expectation": "twodotsverticalbelow-ar=2@339,-337+0|seen_alefMaksura-ar.fina=2+343|_c.seen.beh=1+0|lam-ar.medi=1+125|dotbelow-ar=0@72,-46+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بلسي", + "expectation": "twodotsverticalbelow-ar=2@339,-337+0|seen_alefMaksura-ar.fina=2+343|_c.seen.beh=1+0|lam-ar.medi=1+125|dotbelow-ar=0@72,-46+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بللٍ", + "expectation": "kasratan-ar.alt=2@171,-277+0|lam-ar.fina.short=2+178|_c.seen.beh=1+0|lam-ar.medi=1+125|dotbelow-ar=0@72,-46+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بللٍ", + "expectation": "kasratan-ar.alt=2@171,-277+0|lam-ar.fina.short=2+178|_c.seen.beh=1+0|lam-ar.medi=1+125|dotbelow-ar=0@72,-46+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بمسي", + "expectation": "twodotsverticalbelow-ar=2@339,-337+0|seen_alefMaksura-ar.fina=2+343|_c.seen.beh=1+0|meem-ar.medi=1+380|dotbelow-ar=0@47,-46+0|behDotless-ar.init=0@-25,0+105", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بمسي", + "expectation": "twodotsverticalbelow-ar=2@339,-337+0|seen_alefMaksura-ar.fina=2+343|_c.seen.beh=1+0|meem-ar.medi=1+380|dotbelow-ar=0@47,-46+0|behDotless-ar.init=0@-25,0+105", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بمما", + "expectation": "alef-ar.fina=3+101|_c.seen.beh=2+0|meem-ar.medi.round=2+425|meem-ar.medi.round2=1+398|dotbelow-ar=0@72,-46+0|behDotless-ar.init=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بمما", + "expectation": "alef-ar.fina=3+101|_c.seen.beh=2+0|meem-ar.medi.round=2+425|meem-ar.medi.round2=1+398|dotbelow-ar=0@72,-46+0|behDotless-ar.init=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بنخل", + "expectation": "lam-ar.fina=3+177|dotabove-ar=2@-26,220+0|_c.hah.beh=2+7|hah-ar.medi=2+133|dotabove-ar.beh=1@8,416+0|behDotless-ar.medi=1@0,122+128|dotbelow-ar=0@131,126+0|_c.seen.beh=0@0,122+0|behDotless-ar.init.high=0@0,122+340", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بنخل", + "expectation": "lam-ar.fina=3+177|dotabove-ar=2@-26,220+0|_c.hah.beh=2+7|hah-ar.medi=2+133|dotabove-ar.beh=1@8,416+0|behDotless-ar.medi=1@0,122+128|dotbelow-ar=0@131,126+0|_c.seen.beh=0@0,122+0|behDotless-ar.init.high=0@0,122+340", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بنين", + "expectation": "dotabove-ar=3@-3,101+0|noonghunna-ar.fina=3+250|twodotsverticalbelow-ar=2@55,-137+0|behDotless-ar.medi.round=2+108|dotabove-ar.beh=1@-7,385+0|_c.seen.beh=1+0|behDotless-ar.medi.high=1+128|dotbelow-ar=0@72,-46+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بنين", + "expectation": "dotabove-ar=3@-3,101+0|noonghunna-ar.fina=3+250|twodotsverticalbelow-ar=2@55,-137+0|behDotless-ar.medi.round=2+108|dotabove-ar.beh=1@-7,385+0|_c.seen.beh=1+0|behDotless-ar.medi.high=1+128|dotbelow-ar=0@72,-46+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بنيه", + "expectation": "heh-ar.fina=3+339|twodotsverticalbelow-ar=2@9,-137+0|_c.seen.beh=2+0|behDotless-ar.medi=2+128|dotabove-ar.beh=1@-7,385+0|_c.seen.beh=1+0|behDotless-ar.medi.high=1+128|dotbelow-ar=0@72,-46+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بنيه", + "expectation": "heh-ar.fina=3+339|twodotsverticalbelow-ar=2@9,-137+0|_c.seen.beh=2+0|behDotless-ar.medi=2+128|dotabove-ar.beh=1@-7,385+0|_c.seen.beh=1+0|behDotless-ar.medi.high=1+128|dotbelow-ar=0@72,-46+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بهبا", + "expectation": "alef-ar.fina=3+101|dotbelow-ar=2@9,-110+0|_c.seen.beh=2+0|behDotless-ar.medi=2+128|_c.feh.medi.beh=1+0|heh-ar.medi=1+357|dotbelow-ar=0@72,-46+0|_c.seen.beh=0+0|behDotless-ar.init.med=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بهبا", + "expectation": "alef-ar.fina=3+101|dotbelow-ar=2@9,-110+0|_c.seen.beh=2+0|behDotless-ar.medi=2+128|_c.feh.medi.beh=1+0|heh-ar.medi=1+357|dotbelow-ar=0@72,-46+0|_c.seen.beh=0+0|behDotless-ar.init.med=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بهجة", + "expectation": "twodotsverticalabove-ar=3@159,377+0|heh-ar.fina=3+339|dotbelow-ar=2@220,-112+0|_c.hah.beh=2+7|hah-ar.medi=2+133|heh-ar.medi=1@0,122+357|dotbelow-ar=0@122,126+0|_c.seen.beh=0@0,122+0|behDotless-ar.init.med=0@0,122+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بهجة", + "expectation": "twodotsverticalabove-ar=3@159,377+0|heh-ar.fina=3+339|dotbelow-ar=2@220,-112+0|_c.hah.beh=2+7|hah-ar.medi=2+133|heh-ar.medi=1@0,122+357|dotbelow-ar=0@122,126+0|_c.seen.beh=0@0,122+0|behDotless-ar.init.med=0@0,122+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بهسي", + "expectation": "twodotsverticalbelow-ar=2@339,-337+0|seen_alefMaksura-ar.fina=2+343|_c.feh.medi.beh=1+0|heh-ar.medi=1+357|dotbelow-ar=0@72,-46+0|_c.seen.beh=0+0|behDotless-ar.init.med=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بهسي", + "expectation": "twodotsverticalbelow-ar=2@339,-337+0|seen_alefMaksura-ar.fina=2+343|_c.feh.medi.beh=1+0|heh-ar.medi=1+357|dotbelow-ar=0@72,-46+0|_c.seen.beh=0+0|behDotless-ar.init.med=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بهمن", + "expectation": "dotabove-ar=3@-3,101+0|noonghunna-ar.fina=3+250|meem-ar.medi.round3=2+398|heh-ar.medi.round=1+323|dotbelow-ar=0@72,-46+0|_c.seen.beh=0+0|behDotless-ar.init.med=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بهمن", + "expectation": "dotabove-ar=3@-3,101+0|noonghunna-ar.fina=3+250|meem-ar.medi.round3=2+398|heh-ar.medi.round=1+323|dotbelow-ar=0@72,-46+0|_c.seen.beh=0+0|behDotless-ar.init.med=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بيبن", + "expectation": "dotabove-ar=3@-3,101+0|noonghunna-ar.fina=3+250|dotbelow-ar=2@-15,-110+0|behDotless-ar.medi.round=2+108|twodotsverticalbelow-ar=1@14,-137+0|_c.seen.beh=1+0|behDotless-ar.medi.high=1+128|dotbelow-ar=0@72,-46+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بيبن", + "expectation": "dotabove-ar=3@-3,101+0|noonghunna-ar.fina=3+250|dotbelow-ar=2@-15,-110+0|behDotless-ar.medi.round=2+108|twodotsverticalbelow-ar=1@14,-137+0|_c.seen.beh=1+0|behDotless-ar.medi.high=1+128|dotbelow-ar=0@72,-46+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بُمل", + "expectation": "lam-ar.fina=3+177|_c.seen.beh=2+0|meem-ar.medi=2+380|damma-ar=0@-88,98+0|dotbelow-ar=0@47,-46+0|behDotless-ar.init=0@-25,0+105", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بُمل", + "expectation": "lam-ar.fina=3+177|_c.seen.beh=2+0|meem-ar.medi=2+380|damma-ar=0@-88,98+0|dotbelow-ar=0@47,-46+0|behDotless-ar.init=0@-25,0+105", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "تتتا", + "expectation": "alef-ar.fina=3+101|twodotsverticalabove-ar.vert.beh=2@5,298+0|_c.seen.beh=2+0|behDotless-ar.medi=2+128|twodotsverticalabove-ar.beh=1@-37,393+0|_c.seen.beh=1+0|behDotless-ar.medi.high=1+128|twodotsverticalabove-ar=0@-28,307+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "تتتا", + "expectation": "alef-ar.fina=3+101|twodotsverticalabove-ar.vert.beh=2@5,298+0|_c.seen.beh=2+0|behDotless-ar.medi=2+128|twodotsverticalabove-ar.beh=1@-37,393+0|_c.seen.beh=1+0|behDotless-ar.medi.high=1+128|twodotsverticalabove-ar=0@-28,307+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "تعبا", + "expectation": "alef-ar.fina=3+101|dotbelow-ar=2@9,-110+0|_c.seen.beh=2+0|behDotless-ar.medi=2+128|_c.ain.medi.beh=1+66|ain-ar.medi=1+220|twodotsverticalabove-ar.beh=0@-39,400+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "تعبا", + "expectation": "alef-ar.fina=3+101|dotbelow-ar=2@9,-110+0|_c.seen.beh=2+0|behDotless-ar.medi=2+128|_c.ain.medi.beh=1+66|ain-ar.medi=1+220|twodotsverticalabove-ar.beh=0@-39,400+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "تعبت", + "expectation": "twodotsverticalabove-ar=3@803,264+0|behDotless-ar.fina=3+984|dotbelow-ar=2@14,-110+0|_c.seen.beh=2+0|behDotless-ar.medi.high=2+128|_c.ain.medi.beh=1+66|ain-ar.medi=1+220|twodotsverticalabove-ar.beh=0@-39,400+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "تعبت", + "expectation": "twodotsverticalabove-ar=3@803,264+0|behDotless-ar.fina=3+984|dotbelow-ar=2@14,-110+0|_c.seen.beh=2+0|behDotless-ar.medi.high=2+128|_c.ain.medi.beh=1+66|ain-ar.medi=1+220|twodotsverticalabove-ar.beh=0@-39,400+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "تعبه", + "expectation": "heh-ar.fina=3+339|dotbelow-ar=2@17,-110+0|_c.seen.beh=2+0|behDotless-ar.medi.med=2+128|_c.ain.medi.beh=1+66|ain-ar.medi=1+220|twodotsverticalabove-ar.beh=0@-39,400+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "تعبه", + "expectation": "heh-ar.fina=3+339|dotbelow-ar=2@17,-110+0|_c.seen.beh=2+0|behDotless-ar.medi.med=2+128|_c.ain.medi.beh=1+66|ain-ar.medi=1+220|twodotsverticalabove-ar.beh=0@-39,400+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "تعلم", + "expectation": "meem-ar.fina.round=3+554|lam-ar.medi.round=2+95|_c.ain.medi.beh=1+66|ain-ar.medi=1+220|twodotsverticalabove-ar.beh=0@-39,400+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "تعلم", + "expectation": "meem-ar.fina.round=3+554|lam-ar.medi.round=2+95|_c.ain.medi.beh=1+66|ain-ar.medi=1+220|twodotsverticalabove-ar.beh=0@-39,400+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "تعلو", + "expectation": "waw-ar.fina=3+472|lam-ar.medi=2@-10,0+115|_c.ain.medi.beh=1+66|ain-ar.medi=1+220|twodotsverticalabove-ar.beh=0@-39,400+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "تعلو", + "expectation": "waw-ar.fina=3+472|lam-ar.medi=2@-10,0+115|_c.ain.medi.beh=1+66|ain-ar.medi=1+220|twodotsverticalabove-ar.beh=0@-39,400+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "تغنم", + "expectation": "meem-ar.fina.round=3+554|dotabove-ar.beh=2@-29,270+0|behDotless-ar.medi.round=2+108|dotabove-ar=1@-8,223+0|_c.ain.medi.beh=1+66|ain-ar.medi=1+220|twodotsverticalabove-ar.beh=0@-39,400+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "تغنم", + "expectation": "meem-ar.fina.round=3+554|dotabove-ar.beh=2@-29,270+0|behDotless-ar.medi.round=2+108|dotabove-ar=1@-8,223+0|_c.ain.medi.beh=1+66|ain-ar.medi=1+220|twodotsverticalabove-ar.beh=0@-39,400+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "ثثثا", + "expectation": "alef-ar.fina=3+101|threedotsupabove-ar.vert.beh=2@5,298+0|_c.seen.beh=2+0|behDotless-ar.medi=2+128|threedotsupabove-ar.beh=1@-67,393+0|_c.seen.beh=1+0|behDotless-ar.medi.high=1+128|threedotsupabove-ar=0@-62,307+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "ثثثا", + "expectation": "alef-ar.fina=3+101|threedotsupabove-ar.vert.beh=2@5,298+0|_c.seen.beh=2+0|behDotless-ar.medi=2+128|threedotsupabove-ar.beh=1@-67,393+0|_c.seen.beh=1+0|behDotless-ar.medi.high=1+128|threedotsupabove-ar=0@-62,307+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "جججج", + "expectation": "dotbelow-ar=3@571,-122+0|hah-ar.fina=3+417|dotbelow-ar=2@401,-25+0|hah-ar.medi.hah=2@0,115+109|dotbelow-ar=1@401,97+0|hah-ar.medi.hah=1@0,237+109|dotbelow-ar=0@400,220+0|hah-ar.init.hah=0@0,359+579", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "جججج", + "expectation": "dotbelow-ar=3@571,-122+0|hah-ar.fina=3+417|dotbelow-ar=2@401,-25+0|hah-ar.medi.hah=2@0,115+109|dotbelow-ar=1@401,97+0|hah-ar.medi.hah=1@0,237+109|dotbelow-ar=0@400,220+0|hah-ar.init.hah=0@0,359+579", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "جلحو", + "expectation": "waw-ar.fina.round=3+492|_c.ain.meem=2@-7,0+28|hah-ar.medi=2@-39,0+94|lam-ar.medi.hah1=1@0,7+125|dotbelow-ar=0@270,-10+0|_c.hah.beh=0@0,122+7|hah-ar.init=0@0,122+703", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "جلحو", + "expectation": "waw-ar.fina.round=3+492|_c.ain.meem=2@-7,0+28|hah-ar.medi=2@-39,0+94|lam-ar.medi.hah1=1@0,7+125|dotbelow-ar=0@270,-10+0|_c.hah.beh=0@0,122+7|hah-ar.init=0@0,122+703", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "حالت", + "expectation": "twodotsverticalabove-ar=3@803,264+0|behDotless-ar.fina=3+984|_c.seen.beh=2+0|lam-ar.init=2+123|alef-ar.fina=1@400,0+501|_c.hah.beh=0+7|hah-ar.init=0+703", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "حالت", + "expectation": "twodotsverticalabove-ar=3@803,264+0|behDotless-ar.fina=3+984|_c.seen.beh=2+0|lam-ar.init.short=2+123|alef-ar.fina=1@20,0+121|_c.hah.beh=0+7|hah-ar.init=0+703", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "ريحا", + "expectation": "alef-ar.fina=3+101|_c.hah.beh=2+7|hah-ar.medi.alt=2+135|twodotsverticalbelow-ar=1@167,158+0|behDotless-ar.init.hah=1@63,5+572|reh-ar=0@400,0+850", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "ريحا", + "expectation": "alef-ar.fina=3+101|_c.hah.beh=2+7|hah-ar.medi.alt=2+135|twodotsverticalbelow-ar=1@167,158+0|behDotless-ar.init.hah=1@63,5+572|reh-ar=0@20,0+470", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "سبإٍ", + "expectation": "kasratan-ar=2@-75,-131+0|alef-ar.fina=2+101|dotbelow-ar=1@9,-110+0|_c.seen.beh=1+0|behDotless-ar.medi=1+128|_c.seen.beh=0+0|seen-ar.init=0+378", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "سبإٍ", + "expectation": "kasratan-ar=2@-75,-131+0|alef-ar.fina=2+101|dotbelow-ar=1@9,-110+0|_c.seen.beh=1+0|behDotless-ar.medi=1+128|_c.seen.beh=0+0|seen-ar.init=0+378", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "سببا", + "expectation": "alef-ar.fina=3+101|dotbelow-ar=2@9,-110+0|_c.seen.beh=2+0|behDotless-ar.medi=2+128|dotbelow-ar=1@14,-110+0|_c.seen.beh=1+0|behDotless-ar.medi.high=1+128|_c.seen.beh=0+0|seen-ar.init=0+378", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "سببا", + "expectation": "alef-ar.fina=3+101|dotbelow-ar=2@9,-110+0|_c.seen.beh=2+0|behDotless-ar.medi=2+128|dotbelow-ar=1@14,-110+0|_c.seen.beh=1+0|behDotless-ar.medi.high=1+128|_c.seen.beh=0+0|seen-ar.init=0+378", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "سبيل", + "expectation": "lam-ar.fina=3+177|twodotsverticalbelow-ar=2@9,-137+0|_c.seen.beh=2+0|behDotless-ar.medi=2+128|dotbelow-ar=1@14,-110+0|_c.seen.beh=1+0|behDotless-ar.medi.high=1+128|_c.seen.beh=0+0|seen-ar.init=0+378", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "سبيل", + "expectation": "lam-ar.fina=3+177|twodotsverticalbelow-ar=2@9,-137+0|_c.seen.beh=2+0|behDotless-ar.medi=2+128|dotbelow-ar=1@14,-110+0|_c.seen.beh=1+0|behDotless-ar.medi.high=1+128|_c.seen.beh=0+0|seen-ar.init=0+378", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "سحيق", + "expectation": "twodotsverticalabove-ar=3@-62,265+0|qafDotless-ar.fina=3+373|twodotsverticalbelow-ar=2@159,-137+0|behDotless-ar.medi=2+128|_c.hah.beh=1+7|hah-ar.medi=1+133|seen-ar.init=0@0,122+468", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "سحيق", + "expectation": "twodotsverticalabove-ar=3@-62,265+0|qafDotless-ar.fina=3+373|twodotsverticalbelow-ar=2@159,-137+0|behDotless-ar.medi=2+128|_c.hah.beh=1+7|hah-ar.medi=1+133|seen-ar.init=0@0,122+468", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "سوءِ", + "expectation": "kasra-ar=2@186,-263+0|waw-ar.fina=1+472|seen-ar.init=0+378", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "سوءِ", + "expectation": "kasra-ar=2@186,-263+0|waw-ar.fina=1+472|seen-ar.init=0+378", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "سِيء", + "expectation": "hamza-ar=3+0|twodotsverticalbelow-ar=2@339,-334+0|alefMaksura-ar.fina=2+282|kasra-ar=0@126,-125+0|seen-ar.init=0@-36,0+342", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "سِيء", + "expectation": "hamza-ar=3+0|twodotsverticalbelow-ar=2@339,-334+0|alefMaksura-ar.fina=2+282|kasra-ar=0@126,-125+0|seen-ar.init=0@-36,0+342", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "صــا", + "expectation": "alef-ar.fina.kashida=3+219|kashida-ar=2+100|kashida-ar=1+100|sad-ar.init=0+765", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "صــا", + "expectation": "alef-ar.fina.kashida=3+219|kashida-ar=2+100|kashida-ar=1+100|sad-ar.init=0+765", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "طارق", + "expectation": "twodotsverticalabove-ar=3@-70,279+0|qafDotless-ar=3+469|reh-ar=2@370,0+820|alef-ar.fina.short=1@400,0+502|_c.seen.beh=0+0|tah-ar.init=0+765", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "طارق", + "expectation": "twodotsverticalabove-ar=3@-70,279+0|qafDotless-ar=3+469|reh-ar=2@-10,0+440|alef-ar.fina.short=1@20,0+122|_c.seen.beh=0+0|tah-ar.init=0+765", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "طريق", + "expectation": "twodotsverticalabove-ar=3@-62,265+0|qafDotless-ar.fina=3+373|twodotsverticalbelow-ar=2@72,-73+0|behDotless-ar.init=2+130|reh-ar.fina=1@305,0+698|tah-ar.init=0+765", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "طريق", + "expectation": "twodotsverticalabove-ar=3@-62,265+0|qafDotless-ar.fina=3+373|twodotsverticalbelow-ar=2@72,-73+0|behDotless-ar.init=2+130|reh-ar.fina=1@-75,0+318|tah-ar.init=0+765", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "عليم", + "expectation": "meem-ar.fina.round=3+554|twodotsverticalbelow-ar=2@-15,-137+0|behDotless-ar.medi.round=2+108|_c.seen.beh=1+0|lam-ar.medi=1+125|_c.ain.init.beh=0+95|ain-ar.init=0@-50,0+640", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "عليم", + "expectation": "meem-ar.fina.round=3+554|twodotsverticalbelow-ar=2@-15,-137+0|behDotless-ar.medi.round=2+108|_c.seen.beh=1+0|lam-ar.medi=1+125|_c.ain.init.beh=0+95|ain-ar.init=0@-50,0+640", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "علِي", + "expectation": "twodotsverticalbelow-ar=3@339,-334+0|alefMaksura-ar.fina=3+282|kasra-ar=1@48,-111+0|lam-ar.medi=1+125|_c.ain.init.beh=0+95|ain-ar.init=0@-50,0+640", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "علِي", + "expectation": "twodotsverticalbelow-ar=3@339,-334+0|alefMaksura-ar.fina=3+282|kasra-ar=1@48,-111+0|lam-ar.medi=1+125|_c.ain.init.beh=0+95|ain-ar.init=0@-50,0+640", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "عيسى", + "expectation": "seen_alefMaksura-ar.fina=2+343|twodotsverticalbelow-ar=1@14,-137+0|_c.seen.beh=1+0|behDotless-ar.medi.high=1+128|_c.ain.init.beh=0+95|ain-ar.init=0@-50,0+640", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "عيسى", + "expectation": "seen_alefMaksura-ar.fina=2+343|twodotsverticalbelow-ar=1@14,-137+0|_c.seen.beh=1+0|behDotless-ar.medi.high=1+128|_c.ain.init.beh=0+95|ain-ar.init=0@-50,0+640", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "فبيا", + "expectation": "alef-ar.fina=3+101|twodotsverticalbelow-ar=2@9,-137+0|_c.seen.beh=2+0|behDotless-ar.medi=2+128|dotbelow-ar=1@14,-110+0|_c.seen.beh=1+0|behDotless-ar.medi.high=1+128|dotabove-ar=0@-1,373+0|_c.feh.init.beh=0+174|fehDotless-ar.init=0@-114,0+220", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "فبيا", + "expectation": "alef-ar.fina=3+101|twodotsverticalbelow-ar=2@9,-137+0|_c.seen.beh=2+0|behDotless-ar.medi=2+128|dotbelow-ar=1@14,-110+0|_c.seen.beh=1+0|behDotless-ar.medi.high=1+128|dotabove-ar=0@-1,373+0|_c.feh.init.beh=0+174|fehDotless-ar.init=0@-114,0+220", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "فلاُ", + "expectation": "damma-ar=1@-137,-14+0|lam_alef-ar.fina=1+510|dotabove-ar=0@-91,373+0|fehDotless-ar.init=0@-30,0+304", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "فلاُ", + "expectation": "damma-ar=1@-137,-14+0|lam_alef-ar.fina=1+510|dotabove-ar=0@-91,373+0|fehDotless-ar.init=0@-30,0+304", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "فلِي", + "expectation": "twodotsverticalbelow-ar=3@339,-334+0|alefMaksura-ar.fina=3+282|kasra-ar=1@48,-111+0|lam-ar.medi=1+125|dotabove-ar=0@-1,373+0|_c.feh.init.beh=0+174|fehDotless-ar.init=0@-114,0+220", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "فلِي", + "expectation": "twodotsverticalbelow-ar=3@339,-334+0|alefMaksura-ar.fina=3+282|kasra-ar=1@48,-111+0|lam-ar.medi=1+125|dotabove-ar=0@-1,373+0|_c.feh.init.beh=0+174|fehDotless-ar.init=0@-114,0+220", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "قالت", + "expectation": "twodotsverticalabove-ar=3@803,264+0|behDotless-ar.fina=3+984|_c.seen.beh=2+0|lam-ar.init=2+123|twodotsverticalabove-ar=0@515,402+0|fehDotless_alef-ar=0@392,0+952", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "قالت", + "expectation": "twodotsverticalabove-ar=3@803,264+0|behDotless-ar.fina=3+984|_c.seen.beh=2+0|lam-ar.init.short=2+123|twodotsverticalabove-ar=0@135,402+0|fehDotless_alef-ar=0@12,0+572", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "قلنا", + "expectation": "alef-ar.fina=3+101|dotabove-ar.beh=2@8,294+0|_c.seen.beh=2+0|behDotless-ar.medi=2+128|_c.seen.beh=1+0|lam-ar.medi=1+125|twodotsverticalabove-ar=0@-31,381+0|_c.feh.init.beh=0+174|fehDotless-ar.init=0@-114,0+220", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "قلنا", + "expectation": "alef-ar.fina=3+101|dotabove-ar.beh=2@8,294+0|_c.seen.beh=2+0|behDotless-ar.medi=2+128|_c.seen.beh=1+0|lam-ar.medi=1+125|twodotsverticalabove-ar=0@-31,381+0|_c.feh.init.beh=0+174|fehDotless-ar.init=0@-114,0+220", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "كلمة", + "expectation": "twodotsverticalabove-ar=3@159,377+0|heh-ar.fina=3+339|_c.seen.beh=2+0|meem-ar.medi.round=2+425|lam-ar.medi.round=1+95|kaf-ar.init.alt=0@-5,0+760", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "كلمة", + "expectation": "twodotsverticalabove-ar=3@159,377+0|heh-ar.fina=3+339|_c.seen.beh=2+0|meem-ar.medi.round=2+425|lam-ar.medi.round=1+95|kaf-ar.init.alt=0@-5,0+760", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لبشر", + "expectation": "reh-ar.fina=3+393|threedotshorizontalabove-ar.2=2@0,125+0|seen-ar.medi.low=2+411|dotbelow-ar=1@17,-110+0|_c.seen.beh=1+0|behDotless-ar.medi.med=1+128|_c.seen.beh=0+0|lam-ar.init=0+123", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لبشر", + "expectation": "reh-ar.fina=3+393|threedotshorizontalabove-ar.2=2@0,125+0|seen-ar.medi.low=2+411|dotbelow-ar=1@17,-110+0|_c.seen.beh=1+0|behDotless-ar.medi.med=1+128|_c.seen.beh=0+0|lam-ar.init=0+123", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لحلا", + "expectation": "lam_alef-ar.fina=2+510|hah-ar.medi.alt=1@-57,0+78|lam-ar.init.hah1.alt=0@63,5+578", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لحلا", + "expectation": "lam_alef-ar.fina=2+510|hah-ar.medi.alt=1@-57,0+78|lam-ar.init.hah1.alt=0@63,5+578", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لسبا", + "expectation": "alef-ar.fina=3+101|dotbelow-ar=2@9,-110+0|_c.seen.beh=2+0|behDotless-ar.medi=2+128|_c.seen.beh=1+0|seen-ar.medi=1+401|_c.seen.beh=0+0|lam-ar.init=0+123", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لسبا", + "expectation": "alef-ar.fina=3+101|dotbelow-ar=2@9,-110+0|_c.seen.beh=2+0|behDotless-ar.medi=2+128|_c.seen.beh=1+0|seen-ar.medi=1+401|_c.seen.beh=0+0|lam-ar.init=0+123", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لسبب", + "expectation": "dotbelow-ar=3@834,-111+0|behDotless-ar.fina=3+984|dotbelow-ar=2@14,-110+0|_c.seen.beh=2+0|behDotless-ar.medi.high=2+128|_c.seen.beh=1+0|seen-ar.medi=1+401|_c.seen.beh=0+0|lam-ar.init=0+123", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لسبب", + "expectation": "dotbelow-ar=3@834,-111+0|behDotless-ar.fina=3+984|dotbelow-ar=2@14,-110+0|_c.seen.beh=2+0|behDotless-ar.medi.high=2+128|_c.seen.beh=1+0|seen-ar.medi=1+401|_c.seen.beh=0+0|lam-ar.init=0+123", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لسبه", + "expectation": "heh-ar.fina=3+339|dotbelow-ar=2@17,-110+0|_c.seen.beh=2+0|behDotless-ar.medi.med=2+128|_c.seen.beh=1+0|seen-ar.medi=1+401|_c.seen.beh=0+0|lam-ar.init=0+123", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لسبه", + "expectation": "heh-ar.fina=3+339|dotbelow-ar=2@17,-110+0|_c.seen.beh=2+0|behDotless-ar.medi.med=2+128|_c.seen.beh=1+0|seen-ar.medi=1+401|_c.seen.beh=0+0|lam-ar.init=0+123", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لسسا", + "expectation": "alef-ar.fina=3+101|_c.seen.beh=2+0|seen-ar.medi=2+401|_c.seen.beh=1+0|seen-ar.medi=1+401|_c.seen.beh=0+0|lam-ar.init=0+123", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لسسا", + "expectation": "alef-ar.fina=3+101|_c.seen.beh=2+0|seen-ar.medi=2+401|_c.seen.beh=1+0|seen-ar.medi=1+401|_c.seen.beh=0+0|lam-ar.init=0+123", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لسسي", + "expectation": "twodotsverticalbelow-ar=2@339,-337+0|seen_alefMaksura-ar.fina=2+343|_c.seen.beh=1+0|seen-ar.medi=1+401|_c.seen.beh=0+0|lam-ar.init=0+123", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لسسي", + "expectation": "twodotsverticalbelow-ar=2@339,-337+0|seen_alefMaksura-ar.fina=2+343|_c.seen.beh=1+0|seen-ar.medi=1+401|_c.seen.beh=0+0|lam-ar.init=0+123", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لسضا", + "expectation": "alef-ar.fina=3+101|dotabove-ar=2@310,247+0|_c.seen.beh=2+0|sad-ar.medi=2+758|seen-ar.medi=1@-15,0+386|_c.seen.beh=0+0|lam-ar.init=0+123", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لسضا", + "expectation": "alef-ar.fina=3+101|dotabove-ar=2@310,247+0|_c.seen.beh=2+0|sad-ar.medi=2+758|seen-ar.medi=1@-15,0+386|_c.seen.beh=0+0|lam-ar.init=0+123", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لسطا", + "expectation": "alef-ar.fina.short=3+102|_c.seen.beh=2+0|tah-ar.medi=2+758|seen-ar.medi=1@-15,0+386|_c.seen.beh=0+0|lam-ar.init=0+123", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لسطا", + "expectation": "alef-ar.fina.short=3+102|_c.seen.beh=2+0|tah-ar.medi=2+758|seen-ar.medi=1@-15,0+386|_c.seen.beh=0+0|lam-ar.init=0+123", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لسعا", + "expectation": "alef-ar.fina=3+101|_c.ain.medi.beh=2+66|ain-ar.medi=2+220|_c.seen.beh=1+0|seen-ar.medi=1+401|_c.seen.beh=0+0|lam-ar.init=0+123", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لسعا", + "expectation": "alef-ar.fina=3+101|_c.ain.medi.beh=2+66|ain-ar.medi=2+220|_c.seen.beh=1+0|seen-ar.medi=1+401|_c.seen.beh=0+0|lam-ar.init=0+123", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لسكا", + "expectation": "alef-ar.fina=3+101|kaf-ar.medi.alt=2@-5,0+753|seen-ar.medi=1@-15,0+386|_c.seen.beh=0+0|lam-ar.init=0+123", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لسكا", + "expectation": "alef-ar.fina=3+101|kaf-ar.medi.alt=2@-5,0+753|seen-ar.medi=1@-15,0+386|_c.seen.beh=0+0|lam-ar.init=0+123", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لسلا", + "expectation": "lam_alef-ar.fina=2+510|seen-ar.medi=1+401|_c.seen.beh=0+0|lam-ar.init=0+123", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لسلا", + "expectation": "lam_alef-ar.fina=2+510|seen-ar.medi=1+401|_c.seen.beh=0+0|lam-ar.init=0+123", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لسلن", + "expectation": "dotabove-ar=3@-3,101+0|noonghunna-ar.fina=3+250|lam-ar.medi.round=2+95|_c.seen.beh=1+0|seen-ar.medi=1+401|_c.seen.beh=0+0|lam-ar.init=0+123", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لسلن", + "expectation": "dotabove-ar=3@-3,101+0|noonghunna-ar.fina=3+250|lam-ar.medi.round=2+95|_c.seen.beh=1+0|seen-ar.medi=1+401|_c.seen.beh=0+0|lam-ar.init=0+123", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لسما", + "expectation": "alef-ar.fina=3+101|_c.seen.beh=2+0|meem-ar.medi=2+380|_c.seen.meem=1@11,0+27|seen-ar.medi=1@-36,0+365|_c.seen.beh=0+0|lam-ar.init=0+123", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لسما", + "expectation": "alef-ar.fina=3+101|_c.seen.beh=2+0|meem-ar.medi=2+380|_c.seen.meem=1@11,0+27|seen-ar.medi=1@-36,0+365|_c.seen.beh=0+0|lam-ar.init=0+123", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لسمم", + "expectation": "meem-ar.fina.round=3+554|meem-ar.medi.round2=2+398|_c.seen.meem=1@7,0+23|seen-ar.medi=1@-36,0+365|_c.seen.beh=0+0|lam-ar.init=0+123", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لسمم", + "expectation": "meem-ar.fina.round=3+554|meem-ar.medi.round2=2+398|_c.seen.meem=1@7,0+23|seen-ar.medi=1@-36,0+365|_c.seen.beh=0+0|lam-ar.init=0+123", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لسها", + "expectation": "alef-ar.fina=3+101|_c.feh.medi.beh=2+0|heh-ar.medi=2+357|_c.seen.beh=1+0|seen-ar.medi=1+401|_c.seen.beh=0+0|lam-ar.init=0+123", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لسها", + "expectation": "alef-ar.fina=3+101|_c.feh.medi.beh=2+0|heh-ar.medi=2+357|_c.seen.beh=1+0|seen-ar.medi=1+401|_c.seen.beh=0+0|lam-ar.init=0+123", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لسهم", + "expectation": "meem-ar.fina.round=3+554|heh-ar.medi.round=2+323|_c.seen.beh=1+0|seen-ar.medi=1+401|_c.seen.beh=0+0|lam-ar.init=0+123", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لسهم", + "expectation": "meem-ar.fina.round=3+554|heh-ar.medi.round=2+323|_c.seen.beh=1+0|seen-ar.medi=1+401|_c.seen.beh=0+0|lam-ar.init=0+123", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لسيم", + "expectation": "meem-ar.fina.round=3+554|twodotsverticalbelow-ar=2@-15,-137+0|behDotless-ar.medi.round=2+108|_c.seen.beh=1+0|seen-ar.medi=1+401|_c.seen.beh=0+0|lam-ar.init=0+123", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لسيم", + "expectation": "meem-ar.fina.round=3+554|twodotsverticalbelow-ar=2@-15,-137+0|behDotless-ar.medi.round=2+108|_c.seen.beh=1+0|seen-ar.medi=1+401|_c.seen.beh=0+0|lam-ar.init=0+123", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لمحا", + "expectation": "alef-ar.fina=3+101|_c.hah.beh=2+7|hah-ar.medi=2+133|meem-ar.medi=1@0,122+380|lam-ar.init.hah1=0@-25,7+98", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لمحا", + "expectation": "alef-ar.fina=3+101|_c.hah.beh=2+7|hah-ar.medi=2+133|meem-ar.medi=1@0,122+380|lam-ar.init.hah1=0@-25,7+98", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لممح", + "expectation": "hah-ar.fina=3+417|meem-ar.medi.round=2@0,115+425|meem-ar.medi.round2=1@0,115+398|lam-ar.init.hah1=0@-22,0+101", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لممح", + "expectation": "hah-ar.fina=3+417|meem-ar.medi.round=2@0,115+425|meem-ar.medi.round2=1@0,115+398|lam-ar.init.hah1=0@-22,0+101", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لمهم", + "expectation": "meem-ar.fina.round=3+554|heh-ar.medi.round=2+323|_c.seen.beh=1+0|meem-ar.medi=1+380|lam-ar.init=0@-25,0+98", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لمهم", + "expectation": "meem-ar.fina.round=3+554|heh-ar.medi.round=2+323|_c.seen.beh=1+0|meem-ar.medi=1+380|lam-ar.init=0@-25,0+98", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "مذهل", + "expectation": "lam-ar.fina=3+177|_c.feh.medi.beh=2+0|heh-ar.init=2+361|dotabove-ar=1@826,249+0|dal-ar.fina=1@400,0+1275|meem-ar.init=0+425", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "مذهل", + "expectation": "lam-ar.fina=3+177|_c.feh.medi.beh=2+0|heh-ar.init=2+361|dotabove-ar=1@446,249+0|dal-ar.fina=1@20,0+895|meem-ar.init=0+425", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "مفصح", + "expectation": "hah-ar.fina=3+417|sad-ar.medi=2@0,115+758|dotabove-ar=1@-6,444+0|_c.feh.medi.dal=1@0,115+71|fehDotless-ar.medi=1@-78,115+299|_c.seen.beh=0@0,115+0|meem-ar.init=0@0,115+425", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "مفصح", + "expectation": "hah-ar.fina=3+417|sad-ar.medi=2@0,115+758|dotabove-ar=1@-6,444+0|_c.feh.medi.dal=1@0,115+71|fehDotless-ar.medi=1@-78,115+299|_c.seen.beh=0@0,115+0|meem-ar.init=0@0,115+425", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "ممسي", + "expectation": "twodotsverticalbelow-ar=2@339,-337+0|seen_alefMaksura-ar.fina=2+343|_c.seen.beh=1+0|meem-ar.medi.round=1+425|meem-ar.init.round=0+398", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "ممسي", + "expectation": "twodotsverticalbelow-ar=2@339,-337+0|seen_alefMaksura-ar.fina=2+343|_c.seen.beh=1+0|meem-ar.medi.round=1+425|meem-ar.init.round=0+398", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "ممما", + "expectation": "alef-ar.fina=3+101|_c.seen.beh=2+0|meem-ar.medi.round=2+425|meem-ar.medi.round3=1+398|meem-ar.init.round=0+398", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "ممما", + "expectation": "alef-ar.fina=3+101|_c.seen.beh=2+0|meem-ar.medi.round=2+425|meem-ar.medi.round3=1+398|meem-ar.init.round=0+398", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "منهم", + "expectation": "meem-ar.fina.round=3+554|heh-ar.medi.round=2+323|dotabove-ar.beh=1@2,343+0|_c.seen.beh=1+0|behDotless-ar.medi.med=1+128|_c.seen.beh=0+0|meem-ar.init=0+425", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "منهم", + "expectation": "meem-ar.fina.round=3+554|heh-ar.medi.round=2+323|dotabove-ar.beh=1@2,343+0|_c.seen.beh=1+0|behDotless-ar.medi.med=1+128|_c.seen.beh=0+0|meem-ar.init=0+425", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "منين", + "expectation": "dotabove-ar=3@-3,101+0|noonghunna-ar.fina=3+250|twodotsverticalbelow-ar=2@55,-137+0|behDotless-ar.medi.round=2+108|dotabove-ar.beh=1@-7,385+0|_c.seen.beh=1+0|behDotless-ar.medi.high=1+128|_c.seen.beh=0+0|meem-ar.init=0+425", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "منين", + "expectation": "dotabove-ar=3@-3,101+0|noonghunna-ar.fina=3+250|twodotsverticalbelow-ar=2@55,-137+0|behDotless-ar.medi.round=2+108|dotabove-ar.beh=1@-7,385+0|_c.seen.beh=1+0|behDotless-ar.medi.high=1+128|_c.seen.beh=0+0|meem-ar.init=0+425", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نسبا", + "expectation": "alef-ar.fina=3+101|dotbelow-ar=2@9,-110+0|_c.seen.beh=2+0|behDotless-ar.medi=2+128|_c.seen.beh=1+0|seen-ar.medi.low=1+411|dotabove-ar=0@-2,339+0|_c.seen.beh=0+0|behDotless-ar.init.med=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نسبا", + "expectation": "alef-ar.fina=3+101|dotbelow-ar=2@9,-110+0|_c.seen.beh=2+0|behDotless-ar.medi=2+128|_c.seen.beh=1+0|seen-ar.medi.low=1+411|dotabove-ar=0@-2,339+0|_c.seen.beh=0+0|behDotless-ar.init.med=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نسبب", + "expectation": "dotbelow-ar=3@834,-111+0|behDotless-ar.fina=3+984|dotbelow-ar=2@14,-110+0|_c.seen.beh=2+0|behDotless-ar.medi.high=2+128|_c.seen.beh=1+0|seen-ar.medi.low=1+411|dotabove-ar=0@-2,339+0|_c.seen.beh=0+0|behDotless-ar.init.med=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نسبب", + "expectation": "dotbelow-ar=3@834,-111+0|behDotless-ar.fina=3+984|dotbelow-ar=2@14,-110+0|_c.seen.beh=2+0|behDotless-ar.medi.high=2+128|_c.seen.beh=1+0|seen-ar.medi.low=1+411|dotabove-ar=0@-2,339+0|_c.seen.beh=0+0|behDotless-ar.init.med=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نسسا", + "expectation": "alef-ar.fina=3+101|_c.seen.beh=2+0|seen-ar.medi=2+401|_c.seen.beh=1+0|seen-ar.medi.low=1+411|dotabove-ar=0@-2,339+0|_c.seen.beh=0+0|behDotless-ar.init.med=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نسسا", + "expectation": "alef-ar.fina=3+101|_c.seen.beh=2+0|seen-ar.medi=2+401|_c.seen.beh=1+0|seen-ar.medi.low=1+411|dotabove-ar=0@-2,339+0|_c.seen.beh=0+0|behDotless-ar.init.med=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نسضا", + "expectation": "alef-ar.fina=3+101|dotabove-ar=2@310,247+0|_c.seen.beh=2+0|sad-ar.medi=2+758|seen-ar.medi.low=1@-15,0+396|dotabove-ar=0@-2,339+0|_c.seen.beh=0+0|behDotless-ar.init.med=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نسضا", + "expectation": "alef-ar.fina=3+101|dotabove-ar=2@310,247+0|_c.seen.beh=2+0|sad-ar.medi=2+758|seen-ar.medi.low=1@-15,0+396|dotabove-ar=0@-2,339+0|_c.seen.beh=0+0|behDotless-ar.init.med=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نسطا", + "expectation": "alef-ar.fina.short=3+102|_c.seen.beh=2+0|tah-ar.medi=2+758|seen-ar.medi.low=1@-15,0+396|dotabove-ar=0@-2,339+0|_c.seen.beh=0+0|behDotless-ar.init.med=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نسطا", + "expectation": "alef-ar.fina.short=3+102|_c.seen.beh=2+0|tah-ar.medi=2+758|seen-ar.medi.low=1@-15,0+396|dotabove-ar=0@-2,339+0|_c.seen.beh=0+0|behDotless-ar.init.med=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نسعا", + "expectation": "alef-ar.fina=3+101|_c.ain.medi.beh=2+66|ain-ar.medi=2+220|_c.seen.beh=1+0|seen-ar.medi.low=1+411|dotabove-ar=0@-2,339+0|_c.seen.beh=0+0|behDotless-ar.init.med=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نسعا", + "expectation": "alef-ar.fina=3+101|_c.ain.medi.beh=2+66|ain-ar.medi=2+220|_c.seen.beh=1+0|seen-ar.medi.low=1+411|dotabove-ar=0@-2,339+0|_c.seen.beh=0+0|behDotless-ar.init.med=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نسكا", + "expectation": "alef-ar.fina=3+101|kaf-ar.medi.alt=2@-5,0+753|seen-ar.medi.low=1@-15,0+396|dotabove-ar=0@-2,339+0|_c.seen.beh=0+0|behDotless-ar.init.med=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نسكا", + "expectation": "alef-ar.fina=3+101|kaf-ar.medi.alt=2@-5,0+753|seen-ar.medi.low=1@-15,0+396|dotabove-ar=0@-2,339+0|_c.seen.beh=0+0|behDotless-ar.init.med=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نسلا", + "expectation": "lam_alef-ar.fina=2+510|seen-ar.medi.low=1+411|dotabove-ar=0@-2,339+0|_c.seen.beh=0+0|behDotless-ar.init.med=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نسلا", + "expectation": "lam_alef-ar.fina=2+510|seen-ar.medi.low=1+411|dotabove-ar=0@-2,339+0|_c.seen.beh=0+0|behDotless-ar.init.med=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نسلن", + "expectation": "dotabove-ar=3@-3,101+0|noonghunna-ar.fina=3+250|lam-ar.medi.round=2+95|_c.seen.beh=1+0|seen-ar.medi.low=1+411|dotabove-ar=0@-2,339+0|_c.seen.beh=0+0|behDotless-ar.init.med=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نسلن", + "expectation": "dotabove-ar=3@-3,101+0|noonghunna-ar.fina=3+250|lam-ar.medi.round=2+95|_c.seen.beh=1+0|seen-ar.medi.low=1+411|dotabove-ar=0@-2,339+0|_c.seen.beh=0+0|behDotless-ar.init.med=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نسما", + "expectation": "alef-ar.fina=3+101|_c.seen.beh=2+0|meem-ar.medi=2+380|_c.seen.meem=1@11,0+27|seen-ar.medi.low=1@-36,0+375|dotabove-ar=0@-2,339+0|_c.seen.beh=0+0|behDotless-ar.init.med=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نسما", + "expectation": "alef-ar.fina=3+101|_c.seen.beh=2+0|meem-ar.medi=2+380|_c.seen.meem=1@11,0+27|seen-ar.medi.low=1@-36,0+375|dotabove-ar=0@-2,339+0|_c.seen.beh=0+0|behDotless-ar.init.med=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نسمم", + "expectation": "meem-ar.fina.round=3+554|meem-ar.medi.round2=2+398|_c.seen.meem=1@7,0+23|seen-ar.medi.low=1@-36,0+375|dotabove-ar=0@-2,339+0|_c.seen.beh=0+0|behDotless-ar.init.med=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نسمم", + "expectation": "meem-ar.fina.round=3+554|meem-ar.medi.round2=2+398|_c.seen.meem=1@7,0+23|seen-ar.medi.low=1@-36,0+375|dotabove-ar=0@-2,339+0|_c.seen.beh=0+0|behDotless-ar.init.med=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نسها", + "expectation": "alef-ar.fina=3+101|_c.feh.medi.beh=2+0|heh-ar.medi=2+357|_c.seen.beh=1+0|seen-ar.medi.low=1+411|dotabove-ar=0@-2,339+0|_c.seen.beh=0+0|behDotless-ar.init.med=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نسها", + "expectation": "alef-ar.fina=3+101|_c.feh.medi.beh=2+0|heh-ar.medi=2+357|_c.seen.beh=1+0|seen-ar.medi.low=1+411|dotabove-ar=0@-2,339+0|_c.seen.beh=0+0|behDotless-ar.init.med=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نسهم", + "expectation": "meem-ar.fina.round=3+554|heh-ar.medi.round=2+323|_c.seen.beh=1+0|seen-ar.medi.low=1+411|dotabove-ar=0@-2,339+0|_c.seen.beh=0+0|behDotless-ar.init.med=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نسهم", + "expectation": "meem-ar.fina.round=3+554|heh-ar.medi.round=2+323|_c.seen.beh=1+0|seen-ar.medi.low=1+411|dotabove-ar=0@-2,339+0|_c.seen.beh=0+0|behDotless-ar.init.med=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نسيم", + "expectation": "meem-ar.fina.round=3+554|twodotsverticalbelow-ar=2@-15,-137+0|behDotless-ar.medi.round=2+108|_c.seen.beh=1+0|seen-ar.medi.low=1+411|dotabove-ar=0@-2,339+0|_c.seen.beh=0+0|behDotless-ar.init.med=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نسيم", + "expectation": "meem-ar.fina.round=3+554|twodotsverticalbelow-ar=2@-15,-137+0|behDotless-ar.medi.round=2+108|_c.seen.beh=1+0|seen-ar.medi.low=1+411|dotabove-ar=0@-2,339+0|_c.seen.beh=0+0|behDotless-ar.init.med=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نعبا", + "expectation": "alef-ar.fina=3+101|dotbelow-ar=2@9,-110+0|_c.seen.beh=2+0|behDotless-ar.medi=2+128|_c.ain.medi.beh=1+66|ain-ar.medi=1+220|dotabove-ar.beh=0@-9,392+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نعبا", + "expectation": "alef-ar.fina=3+101|dotbelow-ar=2@9,-110+0|_c.seen.beh=2+0|behDotless-ar.medi=2+128|_c.ain.medi.beh=1+66|ain-ar.medi=1+220|dotabove-ar.beh=0@-9,392+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نعبب", + "expectation": "dotbelow-ar=3@834,-111+0|behDotless-ar.fina=3+984|dotbelow-ar=2@14,-110+0|_c.seen.beh=2+0|behDotless-ar.medi.high=2+128|_c.ain.medi.beh=1+66|ain-ar.medi=1+220|dotabove-ar.beh=0@-9,392+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نعبب", + "expectation": "dotbelow-ar=3@834,-111+0|behDotless-ar.fina=3+984|dotbelow-ar=2@14,-110+0|_c.seen.beh=2+0|behDotless-ar.medi.high=2+128|_c.ain.medi.beh=1+66|ain-ar.medi=1+220|dotabove-ar.beh=0@-9,392+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نعسا", + "expectation": "alef-ar.fina=3+101|_c.seen.beh=2+0|seen-ar.medi=2+401|_c.ain.medi.beh=1+66|ain-ar.medi=1+220|dotabove-ar.beh=0@-9,392+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نعسا", + "expectation": "alef-ar.fina=3+101|_c.seen.beh=2+0|seen-ar.medi=2+401|_c.ain.medi.beh=1+66|ain-ar.medi=1+220|dotabove-ar.beh=0@-9,392+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نعضا", + "expectation": "alef-ar.fina=3+101|dotabove-ar=2@310,247+0|_c.seen.beh=2+0|sad-ar.medi=2+758|_c.ain.dal=1+47|ain-ar.medi=1+220|dotabove-ar.beh=0@-9,392+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نعضا", + "expectation": "alef-ar.fina=3+101|dotabove-ar=2@310,247+0|_c.seen.beh=2+0|sad-ar.medi=2+758|_c.ain.dal=1+47|ain-ar.medi=1+220|dotabove-ar.beh=0@-9,392+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نعطا", + "expectation": "alef-ar.fina.short=3+102|_c.seen.beh=2+0|tah-ar.medi=2+758|_c.ain.dal=1+47|ain-ar.medi=1+220|dotabove-ar.beh=0@-9,392+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نعطا", + "expectation": "alef-ar.fina.short=3+102|_c.seen.beh=2+0|tah-ar.medi=2+758|_c.ain.dal=1+47|ain-ar.medi=1+220|dotabove-ar.beh=0@-9,392+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نععا", + "expectation": "alef-ar.fina=3+101|_c.ain.medi.beh=2+66|ain-ar.medi=2+220|_c.ain.medi.beh=1+66|ain-ar.medi=1+220|dotabove-ar.beh=0@-9,392+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نععا", + "expectation": "alef-ar.fina=3+101|_c.ain.medi.beh=2+66|ain-ar.medi=2+220|_c.ain.medi.beh=1+66|ain-ar.medi=1+220|dotabove-ar.beh=0@-9,392+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نعكا", + "expectation": "alef-ar.fina=3+101|kaf-ar.medi.alt=2@-5,0+753|_c.ain.dal=1+47|ain-ar.medi=1+220|dotabove-ar.beh=0@-9,392+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نعكا", + "expectation": "alef-ar.fina=3+101|kaf-ar.medi.alt=2@-5,0+753|_c.ain.dal=1+47|ain-ar.medi=1+220|dotabove-ar.beh=0@-9,392+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نعلا", + "expectation": "lam_alef-ar.fina=2+510|ain-ar.medi=1@-21,0+199|dotabove-ar.beh=0@-9,392+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نعلا", + "expectation": "lam_alef-ar.fina=2+510|ain-ar.medi=1@-21,0+199|dotabove-ar.beh=0@-9,392+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نعلن", + "expectation": "dotabove-ar=3@-3,101+0|noonghunna-ar.fina=3+250|lam-ar.medi.round=2+95|_c.ain.medi.beh=1+66|ain-ar.medi=1+220|dotabove-ar.beh=0@-9,392+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نعلن", + "expectation": "dotabove-ar=3@-3,101+0|noonghunna-ar.fina=3+250|lam-ar.medi.round=2+95|_c.ain.medi.beh=1+66|ain-ar.medi=1+220|dotabove-ar.beh=0@-9,392+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نعما", + "expectation": "alef-ar.fina=3+101|_c.seen.beh=2+0|meem-ar.medi=2+380|_c.ain.meem=1@13,0+48|ain-ar.medi=1+220|dotabove-ar.beh=0@-9,392+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نعما", + "expectation": "alef-ar.fina=3+101|_c.seen.beh=2+0|meem-ar.medi=2+380|_c.ain.meem=1@13,0+48|ain-ar.medi=1+220|dotabove-ar.beh=0@-9,392+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نعمم", + "expectation": "meem-ar.fina.round=3+554|meem-ar.medi.round2=2+398|_c.ain.meem=1@8,0+43|ain-ar.medi=1+220|dotabove-ar.beh=0@-9,392+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نعمم", + "expectation": "meem-ar.fina.round=3+554|meem-ar.medi.round2=2+398|_c.ain.meem=1@8,0+43|ain-ar.medi=1+220|dotabove-ar.beh=0@-9,392+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نعها", + "expectation": "alef-ar.fina=3+101|_c.feh.medi.beh=2+0|heh-ar.medi=2+357|_c.ain.medi.beh=1+66|ain-ar.medi=1+220|dotabove-ar.beh=0@-9,392+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نعها", + "expectation": "alef-ar.fina=3+101|_c.feh.medi.beh=2+0|heh-ar.medi=2+357|_c.ain.medi.beh=1+66|ain-ar.medi=1+220|dotabove-ar.beh=0@-9,392+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نعهم", + "expectation": "meem-ar.fina.round=3+554|heh-ar.medi.round=2+323|_c.ain.medi.beh=1+66|ain-ar.medi=1+220|dotabove-ar.beh=0@-9,392+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نعهم", + "expectation": "meem-ar.fina.round=3+554|heh-ar.medi.round=2+323|_c.ain.medi.beh=1+66|ain-ar.medi=1+220|dotabove-ar.beh=0@-9,392+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نعيم", + "expectation": "meem-ar.fina.round=3+554|twodotsverticalbelow-ar=2@-15,-137+0|behDotless-ar.medi.round=2+108|_c.ain.medi.beh=1+66|ain-ar.medi=1+220|dotabove-ar.beh=0@-9,392+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نعيم", + "expectation": "meem-ar.fina.round=3+554|twodotsverticalbelow-ar=2@-15,-137+0|behDotless-ar.medi.round=2+108|_c.ain.medi.beh=1+66|ain-ar.medi=1+220|dotabove-ar.beh=0@-9,392+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نــا", + "expectation": "alef-ar.fina.kashida=3+219|kashida-ar=2+100|kashida-ar=1+100|dotabove-ar=0@2,299+0|behDotless-ar.init=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نــا", + "expectation": "alef-ar.fina.kashida=3+219|kashida-ar=2+100|kashida-ar=1+100|dotabove-ar=0@2,299+0|behDotless-ar.init=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نفبا", + "expectation": "alef-ar.fina=3+101|dotbelow-ar=2@9,-110+0|_c.seen.beh=2+0|behDotless-ar.medi=2+128|dotabove-ar=1@1,329+0|_c.feh.medi.beh=1+0|fehDotless-ar.medi=1+377|dotabove-ar=0@2,299+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نفبا", + "expectation": "alef-ar.fina=3+101|dotbelow-ar=2@9,-110+0|_c.seen.beh=2+0|behDotless-ar.medi=2+128|dotabove-ar=1@1,329+0|_c.feh.medi.beh=1+0|fehDotless-ar.medi=1+377|dotabove-ar=0@2,299+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نفبب", + "expectation": "dotbelow-ar=3@834,-111+0|behDotless-ar.fina=3+984|dotbelow-ar=2@14,-110+0|_c.seen.beh=2+0|behDotless-ar.medi.high=2+128|dotabove-ar=1@1,329+0|_c.feh.medi.beh=1+0|fehDotless-ar.medi=1+377|dotabove-ar=0@2,299+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نفبب", + "expectation": "dotbelow-ar=3@834,-111+0|behDotless-ar.fina=3+984|dotbelow-ar=2@14,-110+0|_c.seen.beh=2+0|behDotless-ar.medi.high=2+128|dotabove-ar=1@1,329+0|_c.feh.medi.beh=1+0|fehDotless-ar.medi=1+377|dotabove-ar=0@2,299+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نفسا", + "expectation": "alef-ar.fina=3+101|_c.seen.beh=2+0|seen-ar.medi.low=2+411|dotabove-ar=1@1,329+0|_c.feh.medi.beh=1+0|fehDotless-ar.medi=1+377|dotabove-ar=0@2,299+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نفسا", + "expectation": "alef-ar.fina=3+101|_c.seen.beh=2+0|seen-ar.medi.low=2+411|dotabove-ar=1@1,329+0|_c.feh.medi.beh=1+0|fehDotless-ar.medi=1+377|dotabove-ar=0@2,299+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نفضا", + "expectation": "alef-ar.fina=3+101|dotabove-ar=2@310,247+0|_c.seen.beh=2+0|sad-ar.medi=2+758|dotabove-ar=1@-6,329+0|_c.feh.medi.dal=1+71|fehDotless-ar.medi=1@-78,0+299|dotabove-ar=0@2,299+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نفضا", + "expectation": "alef-ar.fina=3+101|dotabove-ar=2@310,247+0|_c.seen.beh=2+0|sad-ar.medi=2+758|dotabove-ar=1@-6,329+0|_c.feh.medi.dal=1+71|fehDotless-ar.medi=1@-78,0+299|dotabove-ar=0@2,299+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نفطا", + "expectation": "alef-ar.fina.short=3+102|_c.seen.beh=2+0|tah-ar.medi=2+758|dotabove-ar=1@-6,329+0|_c.feh.medi.dal=1+71|fehDotless-ar.medi=1@-78,0+299|dotabove-ar=0@2,299+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نفطا", + "expectation": "alef-ar.fina.short=3+102|_c.seen.beh=2+0|tah-ar.medi=2+758|dotabove-ar=1@-6,329+0|_c.feh.medi.dal=1+71|fehDotless-ar.medi=1@-78,0+299|dotabove-ar=0@2,299+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نفعا", + "expectation": "alef-ar.fina=3+101|_c.ain.medi.beh=2+66|ain-ar.medi=2+220|dotabove-ar=1@1,329+0|_c.feh.medi.beh=1+0|fehDotless-ar.medi=1+377|dotabove-ar=0@2,299+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نفعا", + "expectation": "alef-ar.fina=3+101|_c.ain.medi.beh=2+66|ain-ar.medi=2+220|dotabove-ar=1@1,329+0|_c.feh.medi.beh=1+0|fehDotless-ar.medi=1+377|dotabove-ar=0@2,299+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نفكا", + "expectation": "alef-ar.fina=3+101|kaf-ar.medi.alt=2@-5,0+753|dotabove-ar=1@-6,329+0|_c.feh.medi.dal=1+71|fehDotless-ar.medi=1@-78,0+299|dotabove-ar=0@2,299+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نفكا", + "expectation": "alef-ar.fina=3+101|kaf-ar.medi.alt=2@-5,0+753|dotabove-ar=1@-6,329+0|_c.feh.medi.dal=1+71|fehDotless-ar.medi=1@-78,0+299|dotabove-ar=0@2,299+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نفلا", + "expectation": "lam_alef-ar.fina=2+510|dotabove-ar=1@-41,329+0|fehDotless-ar.medi=1@-42,0+335|dotabove-ar=0@2,299+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نفلا", + "expectation": "lam_alef-ar.fina=2+510|dotabove-ar=1@-41,329+0|fehDotless-ar.medi=1@-42,0+335|dotabove-ar=0@2,299+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نفلن", + "expectation": "dotabove-ar=3@-3,101+0|noonghunna-ar.fina=3+250|lam-ar.medi.round=2+95|dotabove-ar=1@1,329+0|_c.feh.medi.beh=1+0|fehDotless-ar.medi=1+377|dotabove-ar=0@2,299+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نفلن", + "expectation": "dotabove-ar=3@-3,101+0|noonghunna-ar.fina=3+250|lam-ar.medi.round=2+95|dotabove-ar=1@1,329+0|_c.feh.medi.beh=1+0|fehDotless-ar.medi=1+377|dotabove-ar=0@2,299+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نفما", + "expectation": "alef-ar.fina=3+101|_c.seen.beh=2+0|meem-ar.medi=2+380|dotabove-ar=1@-12,329+0|_c.feh.medi.meem=1@11,0+58|fehDotless-ar.medi=1@-71,0+306|dotabove-ar=0@2,299+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نفما", + "expectation": "alef-ar.fina=3+101|_c.seen.beh=2+0|meem-ar.medi=2+380|dotabove-ar=1@-12,329+0|_c.feh.medi.meem=1@11,0+58|fehDotless-ar.medi=1@-71,0+306|dotabove-ar=0@2,299+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نفمم", + "expectation": "meem-ar.fina.round=3+554|meem-ar.medi.round2=2+398|dotabove-ar=1@-16,329+0|_c.feh.medi.meem=1@7,0+54|fehDotless-ar.medi=1@-71,0+306|dotabove-ar=0@2,299+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نفمم", + "expectation": "meem-ar.fina.round=3+554|meem-ar.medi.round2=2+398|dotabove-ar=1@-16,329+0|_c.feh.medi.meem=1@7,0+54|fehDotless-ar.medi=1@-71,0+306|dotabove-ar=0@2,299+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نفها", + "expectation": "alef-ar.fina=3+101|_c.feh.medi.beh=2+0|heh-ar.medi=2+357|dotabove-ar=1@1,329+0|_c.feh.medi.beh=1+0|fehDotless-ar.medi=1+377|dotabove-ar=0@2,299+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نفها", + "expectation": "alef-ar.fina=3+101|_c.feh.medi.beh=2+0|heh-ar.medi=2+357|dotabove-ar=1@1,329+0|_c.feh.medi.beh=1+0|fehDotless-ar.medi=1+377|dotabove-ar=0@2,299+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نفهم", + "expectation": "meem-ar.fina.round=3+554|heh-ar.medi.round=2+323|dotabove-ar=1@1,329+0|_c.feh.medi.beh=1+0|fehDotless-ar.medi=1+377|dotabove-ar=0@2,299+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نفهم", + "expectation": "meem-ar.fina.round=3+554|heh-ar.medi.round=2+323|dotabove-ar=1@1,329+0|_c.feh.medi.beh=1+0|fehDotless-ar.medi=1+377|dotabove-ar=0@2,299+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نقيم", + "expectation": "meem-ar.fina.round=3+554|twodotsverticalbelow-ar=2@-15,-137+0|behDotless-ar.medi.round=2+108|twodotsverticalabove-ar=1@-29,337+0|_c.feh.medi.beh=1+0|fehDotless-ar.medi=1+377|dotabove-ar=0@2,299+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نقيم", + "expectation": "meem-ar.fina.round=3+554|twodotsverticalbelow-ar=2@-15,-137+0|behDotless-ar.medi.round=2+108|twodotsverticalabove-ar=1@-29,337+0|_c.feh.medi.beh=1+0|fehDotless-ar.medi=1+377|dotabove-ar=0@2,299+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نننا", + "expectation": "alef-ar.fina=3+101|dotabove-ar.beh=2@8,294+0|_c.seen.beh=2+0|behDotless-ar.medi=2+128|dotabove-ar.beh=1@-7,385+0|_c.seen.beh=1+0|behDotless-ar.medi.high=1+128|dotabove-ar=0@2,299+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "نننا", + "expectation": "alef-ar.fina=3+101|dotabove-ar.beh=2@8,294+0|_c.seen.beh=2+0|behDotless-ar.medi=2+128|dotabove-ar.beh=1@-7,385+0|_c.seen.beh=1+0|behDotless-ar.medi.high=1+128|dotabove-ar=0@2,299+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "هالخ", + "expectation": "dotabove-ar=3@256,188+0|hah-ar.fina.alt=3+407|lam-ar.init.hah1.alt=2@63,0+578|alef-ar.fina=1@400,0+501|_c.feh.medi.beh=0+0|heh-ar.init=0+361", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "هالخ", + "expectation": "dotabove-ar=3@256,188+0|hah-ar.fina.alt=3+407|lam-ar.init.hah1.alt=2@63,0+578|alef-ar.fina=1@20,0+121|_c.feh.medi.beh=0+0|heh-ar.init=0+361", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "وبخا", + "expectation": "alef-ar.fina=3+101|dotabove-ar=2@-15,198+0|_c.hah.beh=2+7|hah-ar.medi.alt=2+135|dotbelow-ar=1@167,185+0|behDotless-ar.init.hah=1@63,5+572|waw-ar=0@400,0+909", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "وبخا", + "expectation": "alef-ar.fina=3+101|dotabove-ar=2@-15,198+0|_c.hah.beh=2+7|hah-ar.medi.alt=2+135|dotbelow-ar=1@167,185+0|behDotless-ar.init.hah=1@63,5+572|waw-ar=0@20,0+529", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "ولجا", + "expectation": "alef-ar.fina=3+101|dotbelow-ar=2@220,-112+0|_c.hah.beh=2+7|hah-ar.medi.alt=2+135|lam-ar.init.hah1.alt=1@63,5+578|waw-ar=0@400,0+909", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "ولجا", + "expectation": "alef-ar.fina=3+101|dotbelow-ar=2@220,-112+0|_c.hah.beh=2+7|hah-ar.medi.alt=2+135|lam-ar.init.hah1.alt=1@63,5+578|waw-ar=0@20,0+529", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "يتخذ", + "expectation": "dotabove-ar=3@426,249+0|dal-ar.fina=3+875|dotabove-ar=2@-33,220+0|_c.hah.dal=2+71|hah-ar.medi=2@-71,0+62|twodotsverticalabove-ar.beh=1@-22,424+0|behDotless-ar.medi=1@0,122+128|twodotsverticalbelow-ar=0@131,99+0|_c.seen.beh=0@0,122+0|behDotless-ar.init.high=0@0,122+340", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "يتخذ", + "expectation": "dotabove-ar=3@426,249+0|dal-ar.fina=3+875|dotabove-ar=2@-33,220+0|_c.hah.dal=2+71|hah-ar.medi=2@-71,0+62|twodotsverticalabove-ar.beh=1@-22,424+0|behDotless-ar.medi=1@0,122+128|twodotsverticalbelow-ar=0@131,99+0|_c.seen.beh=0@0,122+0|behDotless-ar.init.high=0@0,122+340", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "يجبي", + "expectation": "twodotsverticalbelow-ar=3@339,-334+0|alefMaksura-ar.fina=3+282|dotbelow-ar=2@79,-110+0|behDotless-ar.medi=2+128|dotbelow-ar=1@220,-112+0|_c.hah.beh=1+7|hah-ar.medi.alt=1+135|twodotsverticalbelow-ar=0@167,158+0|behDotless-ar.init.hah=0@63,5+572", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "يجبي", + "expectation": "twodotsverticalbelow-ar=3@339,-334+0|alefMaksura-ar.fina=3+282|dotbelow-ar=2@79,-110+0|behDotless-ar.medi=2+128|dotbelow-ar=1@220,-112+0|_c.hah.beh=1+7|hah-ar.medi.alt=1+135|twodotsverticalbelow-ar=0@167,158+0|behDotless-ar.init.hah=0@63,5+572", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "يحيي", + "expectation": "twodotsverticalbelow-ar=3@339,-334+0|alefMaksura-ar.fina=3+282|twodotsverticalbelow-ar=2@79,-137+0|behDotless-ar.medi=2+128|_c.hah.beh=1+7|hah-ar.medi.alt=1+135|twodotsverticalbelow-ar=0@167,158+0|behDotless-ar.init.hah=0@63,5+572", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "يحيي", + "expectation": "twodotsverticalbelow-ar=3@339,-334+0|alefMaksura-ar.fina=3+282|twodotsverticalbelow-ar=2@79,-137+0|behDotless-ar.medi=2+128|_c.hah.beh=1+7|hah-ar.medi.alt=1+135|twodotsverticalbelow-ar=0@167,158+0|behDotless-ar.init.hah=0@63,5+572", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "يشعر", + "expectation": "reh-ar.fina=3+393|_c.ain.medi.reh=2+7|ain-ar.medi=2+220|threedotshorizontalabove-ar.2=1@0,125+0|_c.seen.beh=1+0|seen-ar.medi.low=1+411|twodotsverticalbelow-ar=0@72,-73+0|_c.seen.beh=0+0|behDotless-ar.init.med=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "يشعر", + "expectation": "reh-ar.fina=3+393|_c.ain.medi.reh=2+7|ain-ar.medi=2+220|threedotshorizontalabove-ar.2=1@0,125+0|_c.seen.beh=1+0|seen-ar.medi.low=1+411|twodotsverticalbelow-ar=0@72,-73+0|_c.seen.beh=0+0|behDotless-ar.init.med=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "يلجل", + "expectation": "lam-ar.fina=3+177|dotbelow-ar=2@220,-112+0|_c.hah.beh=2+7|hah-ar.medi=2+133|lam-ar.medi.hah1=1@0,7+125|twodotsverticalbelow-ar=0@122,99+0|_c.seen.beh=0@0,122+0|behDotless-ar.init=0@0,122+340", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "يلجل", + "expectation": "lam-ar.fina=3+177|dotbelow-ar=2@220,-112+0|_c.hah.beh=2+7|hah-ar.medi=2+133|lam-ar.medi.hah1=1@0,7+125|twodotsverticalbelow-ar=0@122,99+0|_c.seen.beh=0@0,122+0|behDotless-ar.init=0@0,122+340", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "يلمح", + "expectation": "hah-ar.fina=3+417|meem-ar.medi.round=2@0,115+425|lam-ar.medi.hah1.round=1+94|twodotsverticalbelow-ar=0@72,42+0|_c.seen.beh=0@0,115+0|behDotless-ar.init=0@0,115+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "يلمح", + "expectation": "hah-ar.fina=3+417|meem-ar.medi.round=2@0,115+425|lam-ar.medi.hah1.round=1+94|twodotsverticalbelow-ar=0@72,42+0|_c.seen.beh=0@0,115+0|behDotless-ar.init=0@0,115+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "يمما", + "expectation": "alef-ar.fina=3+101|_c.seen.beh=2+0|meem-ar.medi.round=2+425|meem-ar.medi.round2=1+398|twodotsverticalbelow-ar=0@72,-73+0|behDotless-ar.init=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "يمما", + "expectation": "alef-ar.fina=3+101|_c.seen.beh=2+0|meem-ar.medi.round=2+425|meem-ar.medi.round2=1+398|twodotsverticalbelow-ar=0@72,-73+0|behDotless-ar.init=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "يممر", + "expectation": "reh-ar.fina=3+393|meem-ar.medi.round3=2@20,0+418|meem-ar.medi.round2=1+398|twodotsverticalbelow-ar=0@72,-73+0|behDotless-ar.init=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "يممر", + "expectation": "reh-ar.fina=3+393|meem-ar.medi.round3=2@20,0+418|meem-ar.medi.round2=1+398|twodotsverticalbelow-ar=0@72,-73+0|behDotless-ar.init=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "يممو", + "expectation": "waw-ar.fina.round=3+492|meem-ar.medi.round3=2+398|meem-ar.medi.round2=1+398|twodotsverticalbelow-ar=0@72,-73+0|behDotless-ar.init=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "يممو", + "expectation": "waw-ar.fina.round=3+492|meem-ar.medi.round3=2+398|meem-ar.medi.round2=1+398|twodotsverticalbelow-ar=0@72,-73+0|behDotless-ar.init=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "ءَامن", + "expectation": "dotabove-ar=4@-3,101+0|noonghunna-ar.fina=4+250|meem-ar.init.round=3+398|madda-ar=2@241,551+0|alef-ar=2@379,0+1037|hamza_fatha-ar=0+0", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "ءَامن", + "expectation": "dotabove-ar=4@-3,101+0|noonghunna-ar.fina=4+250|meem-ar.init.round=3+398|madda-ar=2@-139,551+0|alef-ar=2@-1,0+657|hamza_fatha-ar=0+0", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "أضاءَ", + "expectation": "madda-ar=3@-151,560+0|alef-ar.fina=2+101|dotabove-ar=1@310,247+0|_c.seen.beh=1+0|sad-ar.init=1+765|fatha-ar=0@437,547+0|alef-ar=0@365,0+1023", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "أضاءَ", + "expectation": "madda-ar=3@-151,560+0|alef-ar.fina=2+101|dotabove-ar=1@310,247+0|_c.seen.beh=1+0|sad-ar.init=1+765|fatha-ar=0@57,547+0|alef-ar=0@-15,0+643", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "أيلمح", + "expectation": "hah-ar.fina=4+417|meem-ar.medi.round=3@0,115+425|lam-ar.medi.hah1.round=2+94|twodotsverticalbelow-ar=1@72,42+0|_c.seen.beh=1@0,115+0|behDotless-ar.init=1@0,115+130|fatha-ar=0@462,547+0|alef-ar=0@390,0+1048", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "أيلمح", + "expectation": "hah-ar.fina=4+417|meem-ar.medi.round=3@0,115+425|lam-ar.medi.hah1.round=2+94|twodotsverticalbelow-ar=1@72,42+0|_c.seen.beh=1@0,115+0|behDotless-ar.init=1@0,115+130|fatha-ar=0@82,547+0|alef-ar=0@10,0+668", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "اتبعو", + "expectation": "waw-ar.fina.round=4+492|_c.ain.meem=3@-7,0+28|ain-ar.medi=3+220|dotbelow-ar=2@9,-110+0|_c.seen.beh=2+0|behDotless-ar.medi=2+128|twodotsverticalabove-ar.beh=1@-39,400+0|_c.seen.beh=1+0|behDotless-ar.init.high=1+130|alef-ar=0@390,0+1048", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "اتبعو", + "expectation": "waw-ar.fina.round=4+492|_c.ain.meem=3@-7,0+28|ain-ar.medi=3+220|dotbelow-ar=2@9,-110+0|_c.seen.beh=2+0|behDotless-ar.medi=2+128|twodotsverticalabove-ar.beh=1@-39,400+0|_c.seen.beh=1+0|behDotless-ar.init.high=1+130|alef-ar=0@10,0+668", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "اططحح", + "expectation": "hah-ar.fina=4+417|hah-ar.medi.hah=3@0,115+109|tah-ar.medi.hah2=2@0,7+758|tah-ar.init.hah2=1@-9,7+756|alef-ar=0@400,0+1058", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "اططحح", + "expectation": "hah-ar.fina=4+417|hah-ar.medi.hah=3@0,115+109|tah-ar.medi.hah2=2@0,7+758|tah-ar.init.hah2=1@-9,7+756|alef-ar=0@20,0+678", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "اطفيح", + "expectation": "hah-ar.fina=4+417|twodotsverticalbelow-ar=3@404,-42+0|behDotless-ar.medi=3@0,115+128|dotabove-ar=2@1,444+0|_c.feh.medi.beh=2@0,115+0|fehDotless-ar.medi=2@0,115+377|_c.seen.beh=1@0,115+0|tah-ar.init.hah1=1+765|alef-ar=0@400,0+1058", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "اطفيح", + "expectation": "hah-ar.fina=4+417|twodotsverticalbelow-ar=3@404,-42+0|behDotless-ar.medi=3@0,115+128|dotabove-ar=2@1,444+0|_c.feh.medi.beh=2@0,115+0|fehDotless-ar.medi=2@0,115+377|_c.seen.beh=1@0,115+0|tah-ar.init.hah1=1+765|alef-ar=0@20,0+678", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "البلح", + "expectation": "hah-ar.fina=4+417|lam-ar.medi.hah1=3+125|dotbelow-ar=2@274,-15+0|_c.seen.beh=2@0,115+0|behDotless-ar.medi=2@0,115+128|_c.seen.beh=1@0,115+0|lam-ar.init.hah1=1+203|alef-ar=0@395,0+1053", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "البلح", + "expectation": "hah-ar.fina=4+417|lam-ar.medi.hah1=3+125|dotbelow-ar=2@274,-15+0|_c.seen.beh=2@0,115+0|behDotless-ar.medi=2@0,115+128|_c.seen.beh=1@0,115+0|lam-ar.init.hah1=1+203|alef-ar=0@15,0+673", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "الطيح", + "expectation": "hah-ar.fina=4+417|twodotsverticalbelow-ar=3@404,-42+0|behDotless-ar.medi=3@0,115+128|_c.seen.beh=2@0,115+0|tah-ar.medi.hah1=2+758|lam-ar.init.hah1=1@-23,0+100|alef-ar=0@395,0+1053", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "الطيح", + "expectation": "hah-ar.fina=4+417|twodotsverticalbelow-ar=3@404,-42+0|behDotless-ar.medi=3@0,115+128|_c.seen.beh=2@0,115+0|tah-ar.medi.hah1=2+758|lam-ar.init.hah1=1@-23,0+100|alef-ar=0@15,0+673", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "القصص", + "expectation": "sad-ar.fina=4+876|sad-ar.medi=3@-9,0+749|twodotsverticalabove-ar=2@-36,337+0|_c.feh.medi.dal=2+71|fehDotless-ar.medi=2@-78,0+299|_c.seen.beh=1+0|lam-ar.init=1+123|alef-ar=0@395,0+1053", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "القصص", + "expectation": "sad-ar.fina=4+876|sad-ar.medi=3@-9,0+749|twodotsverticalabove-ar=2@-36,337+0|_c.feh.medi.dal=2+71|fehDotless-ar.medi=2@-78,0+299|_c.seen.beh=1+0|lam-ar.init.short=1+123|alef-ar=0@15,0+673", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "الكتب", + "expectation": "dotbelow-ar=4@834,-111+0|behDotless-ar.fina=4+984|twodotsverticalabove-ar.beh=3@-37,393+0|_c.seen.beh=3+0|behDotless-ar.medi.high=3+128|kaf-ar.medi.alt=2@-5,0+753|lam-ar.init=1@-23,0+100|alef-ar=0@395,0+1053", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "الكتب", + "expectation": "dotbelow-ar=4@834,-111+0|behDotless-ar.fina=4+984|twodotsverticalabove-ar.beh=3@-37,393+0|_c.seen.beh=3+0|behDotless-ar.medi.high=3+128|kaf-ar.medi.alt=2@-5,0+753|lam-ar.init.short=1@-23,0+100|alef-ar=0@15,0+673", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "النبي", + "expectation": "twodotsverticalbelow-ar=4@339,-334+0|alefMaksura-ar.fina=4+282|dotbelow-ar=3@79,-110+0|behDotless-ar.medi=3+128|dotabove-ar.beh=2@-7,385+0|_c.seen.beh=2+0|behDotless-ar.medi.high=2+128|_c.seen.beh=1+0|lam-ar.init=1+123|alef-ar=0@395,0+1053", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "النبي", + "expectation": "twodotsverticalbelow-ar=4@339,-334+0|alefMaksura-ar.fina=4+282|dotbelow-ar=3@79,-110+0|behDotless-ar.medi=3+128|dotabove-ar.beh=2@-7,385+0|_c.seen.beh=2+0|behDotless-ar.medi.high=2+128|_c.seen.beh=1+0|lam-ar.init.short=1+123|alef-ar=0@15,0+673", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "ايعنے", + "expectation": "yehbarree-ar.fina=4+297|dotabove-ar.beh=3@8,294+0|behDotless-ar.medi=3+128|_c.ain.medi.beh=2+66|ain-ar.medi=2+220|twodotsverticalbelow-ar=1@81,-73+0|_c.seen.beh=1+0|behDotless-ar.init.high=1+360|alef-ar=0@390,0+1048", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "ايعنے", + "expectation": "yehbarree-ar.fina=4+297|dotabove-ar.beh=3@8,294+0|behDotless-ar.medi=3+128|_c.ain.medi.beh=2+66|ain-ar.medi=2+220|twodotsverticalbelow-ar=1@81,-73+0|_c.seen.beh=1+0|behDotless-ar.init.high=1+360|alef-ar=0@10,0+668", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بببسي", + "expectation": "twodotsverticalbelow-ar=3@339,-337+0|seen_alefMaksura-ar.fina=3+343|dotbelow-ar=2@14,-110+0|_c.seen.beh=2+0|behDotless-ar.medi.high=2+128|dotbelow-ar=1@9,-110+0|_c.seen.beh=1+0|behDotless-ar.medi=1+128|dotbelow-ar=0@81,-46+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بببسي", + "expectation": "twodotsverticalbelow-ar=3@339,-337+0|seen_alefMaksura-ar.fina=3+343|dotbelow-ar=2@14,-110+0|_c.seen.beh=2+0|behDotless-ar.medi.high=2+128|dotbelow-ar=1@9,-110+0|_c.seen.beh=1+0|behDotless-ar.medi=1+128|dotbelow-ar=0@81,-46+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بتحية", + "expectation": "twodotsverticalabove-ar=4@159,377+0|heh-ar.fina=4+339|twodotsverticalbelow-ar=3@17,-137+0|_c.seen.beh=3+0|behDotless-ar.medi.med=3+128|_c.hah.beh=2+7|hah-ar.medi=2+133|twodotsverticalabove-ar.beh=1@-22,424+0|behDotless-ar.medi=1@0,122+128|dotbelow-ar=0@131,126+0|_c.seen.beh=0@0,122+0|behDotless-ar.init.high=0@0,122+340", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بتحية", + "expectation": "twodotsverticalabove-ar=4@159,377+0|heh-ar.fina=4+339|twodotsverticalbelow-ar=3@17,-137+0|_c.seen.beh=3+0|behDotless-ar.medi.med=3+128|_c.hah.beh=2+7|hah-ar.medi=2+133|twodotsverticalabove-ar.beh=1@-22,424+0|behDotless-ar.medi=1@0,122+128|dotbelow-ar=0@131,126+0|_c.seen.beh=0@0,122+0|behDotless-ar.init.high=0@0,122+340", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بحححا", + "expectation": "alef-ar.fina=4+101|_c.hah.beh=3+7|hah-ar.medi=3+133|hah-ar.medi.hah=2@0,122+109|hah-ar.medi.hah.alt=1@0,244+109|dotbelow-ar=0@167,414+0|behDotless-ar.init.hah=0@63,234+572", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بحححا", + "expectation": "alef-ar.fina=4+101|_c.hah.beh=3+7|hah-ar.medi=3+133|hah-ar.medi.hah=2@0,122+109|hah-ar.medi.hah.alt=1@0,244+109|dotbelow-ar=0@167,414+0|behDotless-ar.init.hah=0@63,234+572", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بممما", + "expectation": "alef-ar.fina=4+101|_c.seen.beh=3+0|meem-ar.medi.round=3+425|meem-ar.medi.round3=2+398|meem-ar.medi.round2=1+398|dotbelow-ar=0@72,-46+0|behDotless-ar.init=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بممما", + "expectation": "alef-ar.fina=4+101|_c.seen.beh=3+0|meem-ar.medi.round=3+425|meem-ar.medi.round3=2+398|meem-ar.medi.round2=1+398|dotbelow-ar=0@72,-46+0|behDotless-ar.init=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بنيهم", + "expectation": "meem-ar.fina.round=4+554|heh-ar.medi.round=3+323|twodotsverticalbelow-ar=2@9,-137+0|_c.seen.beh=2+0|behDotless-ar.medi=2+128|dotabove-ar.beh=1@-7,385+0|_c.seen.beh=1+0|behDotless-ar.medi.high=1+128|dotbelow-ar=0@72,-46+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بنيهم", + "expectation": "meem-ar.fina.round=4+554|heh-ar.medi.round=3+323|twodotsverticalbelow-ar=2@9,-137+0|_c.seen.beh=2+0|behDotless-ar.medi=2+128|dotabove-ar.beh=1@-7,385+0|_c.seen.beh=1+0|behDotless-ar.medi.high=1+128|dotbelow-ar=0@72,-46+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بيحيي", + "expectation": "twodotsverticalbelow-ar=4@339,-334+0|alefMaksura-ar.fina=4+282|twodotsverticalbelow-ar=3@79,-137+0|behDotless-ar.medi=3+128|_c.hah.beh=2+7|hah-ar.medi=2+133|twodotsverticalbelow-ar=1@404,-35+0|behDotless-ar.medi=1@0,122+128|dotbelow-ar=0@131,126+0|_c.seen.beh=0@0,122+0|behDotless-ar.init.high=0@0,122+340", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بيحيي", + "expectation": "twodotsverticalbelow-ar=4@339,-334+0|alefMaksura-ar.fina=4+282|twodotsverticalbelow-ar=3@79,-137+0|behDotless-ar.medi=3+128|_c.hah.beh=2+7|hah-ar.medi=2+133|twodotsverticalbelow-ar=1@404,-35+0|behDotless-ar.medi=1@0,122+128|dotbelow-ar=0@131,126+0|_c.seen.beh=0@0,122+0|behDotless-ar.init.high=0@0,122+340", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بيننا", + "expectation": "alef-ar.fina=4+101|dotabove-ar.beh=3@8,294+0|_c.seen.beh=3+0|behDotless-ar.medi=3+128|dotabove-ar.beh=2@-7,385+0|_c.seen.beh=2+0|behDotless-ar.medi.high=2+128|twodotsverticalbelow-ar=1@9,-137+0|_c.seen.beh=1+0|behDotless-ar.medi=1+128|dotbelow-ar=0@81,-46+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بيننا", + "expectation": "alef-ar.fina=4+101|dotabove-ar.beh=3@8,294+0|_c.seen.beh=3+0|behDotless-ar.medi=3+128|dotabove-ar.beh=2@-7,385+0|_c.seen.beh=2+0|behDotless-ar.medi.high=2+128|twodotsverticalbelow-ar=1@9,-137+0|_c.seen.beh=1+0|behDotless-ar.medi=1+128|dotbelow-ar=0@81,-46+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "ججججا", + "expectation": "alef-ar.fina=4+101|dotbelow-ar=3@220,-112+0|_c.hah.beh=3+7|hah-ar.medi=3+133|dotbelow-ar=2@401,-18+0|hah-ar.medi.hah=2@0,122+109|dotbelow-ar=1@401,104+0|hah-ar.medi.hah=1@0,244+109|dotbelow-ar=0@400,227+0|hah-ar.init.hah=0@0,366+579", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "ججججا", + "expectation": "alef-ar.fina=4+101|dotbelow-ar=3@220,-112+0|_c.hah.beh=3+7|hah-ar.medi=3+133|dotbelow-ar=2@401,-18+0|hah-ar.medi.hah=2@0,122+109|dotbelow-ar=1@401,104+0|hah-ar.medi.hah=1@0,244+109|dotbelow-ar=0@400,227+0|hah-ar.init.hah=0@0,366+579", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "جنحوا", + "expectation": "alef-ar=4+658|waw-ar.fina.round=3@290,0+782|_c.ain.meem=2@-7,0+28|hah-ar.medi=2@-39,0+94|dotabove-ar.beh=1@8,416+0|behDotless-ar.medi=1@0,122+128|dotbelow-ar=0@270,-10+0|_c.hah.beh=0@0,122+7|hah-ar.init=0@0,122+703", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "جنحوا", + "expectation": "alef-ar=4+658|waw-ar.fina.round=3@-90,0+402|_c.ain.meem=2@-7,0+28|hah-ar.medi=2@-39,0+94|dotabove-ar.beh=1@8,416+0|behDotless-ar.medi=1@0,122+128|dotbelow-ar=0@270,-10+0|_c.hah.beh=0@0,122+7|hah-ar.init=0@0,122+703", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "حنيفا", + "expectation": "alef-ar.fina=4+101|dotabove-ar=3@1,329+0|_c.feh.medi.beh=3+0|fehDotless-ar.medi=3+377|twodotsverticalbelow-ar=2@9,-137+0|_c.seen.beh=2+0|behDotless-ar.medi=2+128|dotabove-ar.beh=1@-7,385+0|_c.seen.beh=1+0|behDotless-ar.medi.high=1+128|_c.hah.beh=0+7|hah-ar.init=0+703", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "حنيفا", + "expectation": "alef-ar.fina=4+101|dotabove-ar=3@1,329+0|_c.feh.medi.beh=3+0|fehDotless-ar.medi=3+377|twodotsverticalbelow-ar=2@9,-137+0|_c.seen.beh=2+0|behDotless-ar.medi=2+128|dotabove-ar.beh=1@-7,385+0|_c.seen.beh=1+0|behDotless-ar.medi.high=1+128|_c.hah.beh=0+7|hah-ar.init=0+703", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "قليلا", + "expectation": "lam_alef-ar.fina=3+510|twodotsverticalbelow-ar=2@9,-137+0|behDotless-ar.medi=2+128|_c.seen.beh=1+0|lam-ar.medi=1+125|twodotsverticalabove-ar=0@-31,381+0|_c.feh.init.beh=0+174|fehDotless-ar.init=0@-114,0+220", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "قليلا", + "expectation": "lam_alef-ar.fina=3+510|twodotsverticalbelow-ar=2@9,-137+0|behDotless-ar.medi=2+128|_c.seen.beh=1+0|lam-ar.medi=1+125|twodotsverticalabove-ar=0@-31,381+0|_c.feh.init.beh=0+174|fehDotless-ar.init=0@-114,0+220", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لحححا", + "expectation": "alef-ar.fina=4+101|_c.hah.beh=3+7|hah-ar.medi=3+133|hah-ar.medi.hah=2@0,122+109|hah-ar.medi.hah.alt=1@0,244+109|lam-ar.init.hah2.alt=0@63,134+578", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لحححا", + "expectation": "alef-ar.fina=4+101|_c.hah.beh=3+7|hah-ar.medi=3+133|hah-ar.medi.hah=2@0,122+109|hah-ar.medi.hah.alt=1@0,244+109|lam-ar.init.hah2.alt=0@63,134+578", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لممحا", + "expectation": "alef-ar.fina=4+101|_c.hah.beh=3+7|hah-ar.medi=3+133|meem-ar.medi.round=2@0,122+425|meem-ar.medi.round2=1@0,122+398|lam-ar.init.hah1=0@-22,7+101", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لممحا", + "expectation": "alef-ar.fina=4+101|_c.hah.beh=3+7|hah-ar.medi=3+133|meem-ar.medi.round=2@0,122+425|meem-ar.medi.round2=1@0,122+398|lam-ar.init.hah1=0@-22,7+101", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لنبين", + "expectation": "dotabove-ar=4@-3,101+0|noonghunna-ar.fina=4+250|twodotsverticalbelow-ar=3@-15,-137+0|behDotless-ar.medi.round=3+108|dotbelow-ar=2@14,-110+0|_c.seen.beh=2+0|behDotless-ar.medi.high=2+128|dotabove-ar.beh=1@8,294+0|_c.seen.beh=1+0|behDotless-ar.medi=1+128|_c.seen.beh=0+0|lam-ar.init=0+123", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لنبين", + "expectation": "dotabove-ar=4@-3,101+0|noonghunna-ar.fina=4+250|twodotsverticalbelow-ar=3@-15,-137+0|behDotless-ar.medi.round=3+108|dotbelow-ar=2@14,-110+0|_c.seen.beh=2+0|behDotless-ar.medi.high=2+128|dotabove-ar.beh=1@8,294+0|_c.seen.beh=1+0|behDotless-ar.medi=1+128|_c.seen.beh=0+0|lam-ar.init=0+123", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "ليتخذ", + "expectation": "dotabove-ar=4@426,249+0|dal-ar.fina=4+875|dotabove-ar=3@-33,220+0|_c.hah.dal=3+71|hah-ar.medi=3@-71,0+62|twodotsverticalabove-ar.beh=2@-22,424+0|behDotless-ar.medi=2@0,122+128|twodotsverticalbelow-ar=1@279,-35+0|_c.seen.beh=1@0,122+0|behDotless-ar.medi.high=1@0,122+128|_c.seen.beh=0@0,122+0|lam-ar.init.hah1=0@0,7+203", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "ليتخذ", + "expectation": "dotabove-ar=4@426,249+0|dal-ar.fina=4+875|dotabove-ar=3@-33,220+0|_c.hah.dal=3+71|hah-ar.medi=3@-71,0+62|twodotsverticalabove-ar.beh=2@-22,424+0|behDotless-ar.medi=2@0,122+128|twodotsverticalbelow-ar=1@279,-35+0|_c.seen.beh=1@0,122+0|behDotless-ar.medi.high=1@0,122+128|_c.seen.beh=0@0,122+0|lam-ar.init.hah1=0@0,7+203", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "ليفجر", + "expectation": "reh-ar.fina=4+393|dotbelow-ar=3@184,-112+0|_c.hah.reh=3@-9,0+102|hah-ar.medi=3@-131,0+2|dotabove-ar=2@1,451+0|fehDotless-ar.medi=2@0,122+377|twodotsverticalbelow-ar=1@24,-35+0|_c.seen.beh=1@0,122+0|behDotless-ar.medi=1@0,122+128|_c.seen.beh=0@0,122+0|lam-ar.init.hah1=0@0,7+123", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "ليفجر", + "expectation": "reh-ar.fina=4+393|dotbelow-ar=3@184,-112+0|_c.hah.reh=3@-9,0+102|hah-ar.medi=3@-131,0+2|dotabove-ar=2@1,451+0|fehDotless-ar.medi=2@0,122+377|twodotsverticalbelow-ar=1@24,-35+0|_c.seen.beh=1@0,122+0|behDotless-ar.medi=1@0,122+128|_c.seen.beh=0@0,122+0|lam-ar.init.hah1=0@0,7+123", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "مبنيه", + "expectation": "heh-ar.fina=4+339|twodotsverticalbelow-ar=3@9,-137+0|_c.seen.beh=3+0|behDotless-ar.medi=3+128|dotabove-ar.beh=2@-7,385+0|_c.seen.beh=2+0|behDotless-ar.medi.high=2+128|dotbelow-ar=1@9,-110+0|_c.seen.beh=1+0|behDotless-ar.medi=1+128|_c.seen.beh=0+0|meem-ar.init=0+425", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "مبنيه", + "expectation": "heh-ar.fina=4+339|twodotsverticalbelow-ar=3@9,-137+0|_c.seen.beh=3+0|behDotless-ar.medi=3+128|dotabove-ar.beh=2@-7,385+0|_c.seen.beh=2+0|behDotless-ar.medi.high=2+128|dotbelow-ar=1@9,-110+0|_c.seen.beh=1+0|behDotless-ar.medi=1+128|_c.seen.beh=0+0|meem-ar.init=0+425", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "مجلجل", + "expectation": "lam-ar.fina=4+177|dotbelow-ar=3@220,-112+0|_c.hah.beh=3+7|hah-ar.medi=3+133|lam-ar.medi.hah1=2@0,7+125|dotbelow-ar=1@270,-10+0|_c.hah.beh=1@0,122+7|hah-ar.medi=1@0,122+133|meem-ar.init=0@0,244+425", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "مجلجل", + "expectation": "lam-ar.fina=4+177|dotbelow-ar=3@220,-112+0|_c.hah.beh=3+7|hah-ar.medi=3+133|lam-ar.medi.hah1=2@0,7+125|dotbelow-ar=1@270,-10+0|_c.hah.beh=1@0,122+7|hah-ar.medi=1@0,122+133|meem-ar.init=0@0,244+425", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "وءامن", + "expectation": "dotabove-ar=4@-3,101+0|noonghunna-ar.fina=4+250|meem-ar.init.round=3+398|madda-ar=2@241,551+0|alef-ar=2@379,0+1037|hamza-ar=1+0|waw-ar=0@330,0+839", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "وءامن", + "expectation": "dotabove-ar=4@-3,101+0|noonghunna-ar.fina=4+250|meem-ar.init.round=3+398|madda-ar=2@-139,551+0|alef-ar=2@-1,0+657|hamza-ar=1+0|waw-ar=0@-50,0+459", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "يحسبن", + "expectation": "dotabove-ar=4@-3,101+0|noonghunna-ar.fina=4+250|dotbelow-ar=3@55,-110+0|behDotless-ar.medi.round=3+108|_c.seen.beh=2+0|seen-ar.medi=2+401|_c.hah.beh=1+7|hah-ar.medi.alt=1+135|twodotsverticalbelow-ar=0@167,158+0|behDotless-ar.init.hah=0@63,5+572", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "يحسبن", + "expectation": "dotabove-ar=4@-3,101+0|noonghunna-ar.fina=4+250|dotbelow-ar=3@55,-110+0|behDotless-ar.medi.round=3+108|_c.seen.beh=2+0|seen-ar.medi=2+401|_c.hah.beh=1+7|hah-ar.medi.alt=1+135|twodotsverticalbelow-ar=0@167,158+0|behDotless-ar.init.hah=0@63,5+572", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "يلمحح", + "expectation": "hah-ar.fina=4+417|hah-ar.medi.hah=3@0,115+109|meem-ar.medi.round=2@0,237+425|lam-ar.medi.hah2.round=1@0,7+95|twodotsverticalbelow-ar=0@72,164+0|_c.seen.beh=0@0,237+0|behDotless-ar.init=0@0,237+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "يلمحح", + "expectation": "hah-ar.fina=4+417|hah-ar.medi.hah=3@0,115+109|meem-ar.medi.round=2@0,237+425|lam-ar.medi.hah2.round=1@0,7+95|twodotsverticalbelow-ar=0@72,164+0|_c.seen.beh=0@0,237+0|behDotless-ar.init=0@0,237+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "الرحمن", + "expectation": "dotabove-ar=5@-3,101+0|noonghunna-ar.fina=5+250|meem-ar.medi.round2=4+398|_c.ain.meem=3@8,0+43|hah-ar.init=3@-39,0+664|reh-ar.fina=2@260,0+653|lam-ar.init=1+123|alef-ar=0@395,0+1053", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "الرحمن", + "expectation": "dotabove-ar=5@-3,101+0|noonghunna-ar.fina=5+250|meem-ar.medi.round2=4+398|_c.ain.meem=3@8,0+43|hah-ar.init=3@-39,0+664|reh-ar.fina=2@-120,0+273|lam-ar.init.short=1+123|alef-ar=0@15,0+673", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "الرحيم", + "expectation": "meem-ar.fina.round=5+554|twodotsverticalbelow-ar=4@-15,-137+0|behDotless-ar.medi.round=4+108|_c.hah.beh=3+7|hah-ar.init=3+703|reh-ar.fina=2@260,0+653|lam-ar.init=1+123|alef-ar=0@395,0+1053", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "الرحيم", + "expectation": "meem-ar.fina.round=5+554|twodotsverticalbelow-ar=4@-15,-137+0|behDotless-ar.medi.round=4+108|_c.hah.beh=3+7|hah-ar.init=3+703|reh-ar.fina=2@-120,0+273|lam-ar.init.short=1+123|alef-ar=0@15,0+673", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "السلطح", + "expectation": "hah-ar.fina=5+417|tah-ar.medi.hah1=4+758|lam-ar.medi.hah1=3@-23,0+102|_c.seen.beh=2@0,115+0|seen-ar.medi=2@0,115+401|_c.seen.beh=1@0,115+0|lam-ar.init.hah1=1+123|alef-ar=0@395,0+1053", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "السلطح", + "expectation": "hah-ar.fina=5+417|tah-ar.medi.hah1=4+758|lam-ar.medi.hah1=3@-23,0+102|_c.seen.beh=2@0,115+0|seen-ar.medi=2@0,115+401|_c.seen.beh=1@0,115+0|lam-ar.init.hah1=1+123|alef-ar=0@15,0+673", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "المليح", + "expectation": "hah-ar.fina=5+417|twodotsverticalbelow-ar=4@404,-42+0|behDotless-ar.medi=4@0,115+128|_c.seen.beh=3@0,115+0|lam-ar.medi.hah1=3+125|_c.seen.beh=2@0,115+0|meem-ar.medi=2@0,115+380|lam-ar.init.hah1=1@-25,0+98|alef-ar=0@395,0+1053", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "المليح", + "expectation": "hah-ar.fina=5+417|twodotsverticalbelow-ar=4@404,-42+0|behDotless-ar.medi=4@0,115+128|_c.seen.beh=3@0,115+0|lam-ar.medi.hah1=3+125|_c.seen.beh=2@0,115+0|meem-ar.medi=2@0,115+380|lam-ar.init.hah1=1@-25,0+98|alef-ar=0@15,0+673", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "ببببسي", + "expectation": "twodotsverticalbelow-ar=4@339,-337+0|seen_alefMaksura-ar.fina=4+343|dotbelow-ar=3@14,-110+0|_c.seen.beh=3+0|behDotless-ar.medi.high=3+128|dotbelow-ar=2@9,-110+0|_c.seen.beh=2+0|behDotless-ar.medi=2+128|dotbelow-ar=1@14,-110+0|_c.seen.beh=1+0|behDotless-ar.medi.high=1+128|dotbelow-ar=0@72,-46+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "ببببسي", + "expectation": "twodotsverticalbelow-ar=4@339,-337+0|seen_alefMaksura-ar.fina=4+343|dotbelow-ar=3@14,-110+0|_c.seen.beh=3+0|behDotless-ar.medi.high=3+128|dotbelow-ar=2@9,-110+0|_c.seen.beh=2+0|behDotless-ar.medi=2+128|dotbelow-ar=1@14,-110+0|_c.seen.beh=1+0|behDotless-ar.medi.high=1+128|dotbelow-ar=0@72,-46+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بححححا", + "expectation": "alef-ar.fina=5+101|_c.hah.beh=4+7|hah-ar.medi=4+133|hah-ar.medi.hah=3@0,122+109|hah-ar.medi.hah=2@0,244+109|hah-ar.medi.hah.alt=1@0,366+109|dotbelow-ar=0@167,536+0|behDotless-ar.init.hah=0@63,356+572", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بححححا", + "expectation": "alef-ar.fina=5+101|_c.hah.beh=4+7|hah-ar.medi=4+133|hah-ar.medi.hah=3@0,122+109|hah-ar.medi.hah=2@0,244+109|hah-ar.medi.hah.alt=1@0,366+109|dotbelow-ar=0@167,536+0|behDotless-ar.init.hah=0@63,356+572", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بطططحة", + "expectation": "twodotsverticalabove-ar=5@159,377+0|heh-ar.fina=5+339|_c.hah.beh=4+7|hah-ar.medi=4+133|tah-ar.medi.hah1=3@0,7+758|tah-ar.medi.hah1=2@-9,7+749|tah-ar.medi.hah1=1@-9,7+749|dotbelow-ar=0@51,76+0|behDotless-ar.init=0@-21,122+109", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بطططحة", + "expectation": "twodotsverticalabove-ar=5@159,377+0|heh-ar.fina=5+339|_c.hah.beh=4+7|hah-ar.medi=4+133|tah-ar.medi.hah1=3@0,7+758|tah-ar.medi.hah1=2@-9,7+749|tah-ar.medi.hah1=1@-9,7+749|dotbelow-ar=0@51,76+0|behDotless-ar.init=0@-21,122+109", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "تحسنين", + "expectation": "dotabove-ar=5@-3,101+0|noonghunna-ar.fina=5+250|twodotsverticalbelow-ar=4@55,-137+0|behDotless-ar.medi.round=4+108|dotabove-ar.beh=3@-7,385+0|_c.seen.beh=3+0|behDotless-ar.medi.high=3+128|_c.seen.beh=2+0|seen-ar.medi=2+401|_c.hah.beh=1+7|hah-ar.medi.alt=1+135|twodotsverticalabove-ar.beh=0@14,407+0|behDotless-ar.init.hah=0@63,5+572", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "تحسنين", + "expectation": "dotabove-ar=5@-3,101+0|noonghunna-ar.fina=5+250|twodotsverticalbelow-ar=4@55,-137+0|behDotless-ar.medi.round=4+108|dotabove-ar.beh=3@-7,385+0|_c.seen.beh=3+0|behDotless-ar.medi.high=3+128|_c.seen.beh=2+0|seen-ar.medi=2+401|_c.hah.beh=1+7|hah-ar.medi.alt=1+135|twodotsverticalabove-ar.beh=0@14,407+0|behDotless-ar.init.hah=0@63,5+572", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "تخطبني", + "expectation": "twodotsverticalbelow-ar=5@339,-334+0|alefMaksura-ar.fina=5+282|dotabove-ar.beh=4@8,294+0|behDotless-ar.medi=4+128|dotbelow-ar=3@14,-110+0|_c.seen.beh=3+0|behDotless-ar.medi.high=3+128|_c.seen.beh=2+0|tah-ar.medi=2+758|dotabove-ar=1@-22,198+0|_c.hah.dal=1+71|hah-ar.medi.alt=1@-71,0+64|twodotsverticalabove-ar.beh=0@14,407+0|behDotless-ar.init.hah=0@63,5+572", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "تخطبني", + "expectation": "twodotsverticalbelow-ar=5@339,-334+0|alefMaksura-ar.fina=5+282|dotabove-ar.beh=4@8,294+0|behDotless-ar.medi=4+128|dotbelow-ar=3@14,-110+0|_c.seen.beh=3+0|behDotless-ar.medi.high=3+128|_c.seen.beh=2+0|tah-ar.medi=2+758|dotabove-ar=1@-22,198+0|_c.hah.dal=1+71|hah-ar.medi.alt=1@-71,0+64|twodotsverticalabove-ar.beh=0@14,407+0|behDotless-ar.init.hah=0@63,5+572", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "تعلمون", + "expectation": "dotabove-ar=5@5,191+0|noonghunna-ar=5+295|waw-ar.fina.round=4@400,0+892|meem-ar.medi.round3=3+398|lam-ar.medi.round=2+95|_c.ain.medi.beh=1+66|ain-ar.medi=1+220|twodotsverticalabove-ar.beh=0@-39,400+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "تعلمون", + "expectation": "dotabove-ar=5@5,191+0|noonghunna-ar=5+295|waw-ar.fina.round=4@20,0+512|meem-ar.medi.round3=3+398|lam-ar.medi.round=2+95|_c.ain.medi.beh=1+66|ain-ar.medi=1+220|twodotsverticalabove-ar.beh=0@-39,400+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "تيــتم", + "expectation": "meem-ar.fina.round=5+554|twodotsverticalabove-ar.beh=4@-59,278+0|behDotless-ar.medi.round.kashida=4+178|kashida-ar=3+100|kashida-ar=2+100|twodotsverticalbelow-ar=1@9,-137+0|behDotless-ar.medi=1+128|twodotsverticalabove-ar.beh=0@-39,400+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "تيــتم", + "expectation": "meem-ar.fina.round=5+554|twodotsverticalabove-ar.beh=4@-59,278+0|behDotless-ar.medi.round.kashida=4+178|kashida-ar=3+100|kashida-ar=2+100|twodotsverticalbelow-ar=1@9,-137+0|behDotless-ar.medi=1+128|twodotsverticalabove-ar.beh=0@-39,400+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "حاججتم", + "expectation": "meem-ar.fina.round=5+554|twodotsverticalabove-ar.beh=4@-59,278+0|behDotless-ar.medi.round=4+108|dotbelow-ar=3@220,-112+0|_c.hah.beh=3+7|hah-ar.medi=3+133|dotbelow-ar=2@400,-17+0|hah-ar.init.hah=2@0,122+579|alef-ar.fina=1@400,0+501|_c.hah.beh=0+7|hah-ar.init=0+703", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "حاججتم", + "expectation": "meem-ar.fina.round=5+554|twodotsverticalabove-ar.beh=4@-59,278+0|behDotless-ar.medi.round=4+108|dotbelow-ar=3@220,-112+0|_c.hah.beh=3+7|hah-ar.medi=3+133|dotbelow-ar=2@400,-17+0|hah-ar.init.hah=2@0,122+579|alef-ar.fina=1@20,0+121|_c.hah.beh=0+7|hah-ar.init=0+703", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "رِزقاً", + "expectation": "fathatan-ar.alt=3@91,527+0|twodotsverticalabove-ar=3@123,402+0|fehDotless_alef-ar=3+560|dotabove-ar.reh=2@473,161+0|reh-ar=2@330,0+780|kasra-ar=0@658,-170+0|reh-ar=0@400,0+850", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "رِزقاً", + "expectation": "fathatan-ar.alt=3@91,527+0|twodotsverticalabove-ar=3@123,402+0|fehDotless_alef-ar=3+560|dotabove-ar.reh=2@93,161+0|reh-ar=2@-50,0+400|kasra-ar=0@278,-170+0|reh-ar=0@20,0+470", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لتحسبو", + "expectation": "waw-ar.fina=5+472|dotbelow-ar=4@-1,-140+0|behDotless-ar.medi=4@-10,0+118|_c.seen.beh=3+0|seen-ar.medi.low=3+411|_c.hah.beh=2+7|hah-ar.medi=2+133|twodotsverticalabove-ar.beh=1@-22,424+0|behDotless-ar.medi=1@0,122+128|_c.seen.beh=0@0,122+0|lam-ar.init.hah1=0@0,7+333", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لتحسبو", + "expectation": "waw-ar.fina=5+472|dotbelow-ar=4@-1,-140+0|behDotless-ar.medi=4@-10,0+118|_c.seen.beh=3+0|seen-ar.medi.low=3+411|_c.hah.beh=2+7|hah-ar.medi=2+133|twodotsverticalabove-ar.beh=1@-22,424+0|behDotless-ar.medi=1@0,122+128|_c.seen.beh=0@0,122+0|lam-ar.init.hah1=0@0,7+333", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لححححا", + "expectation": "alef-ar.fina=5+101|_c.hah.beh=4+7|hah-ar.medi=4+133|hah-ar.medi.hah=3@0,122+109|hah-ar.medi.hah=2@0,244+109|hah-ar.medi.hah.alt=1@0,366+109|lam-ar.init.hah2.alt=0@63,256+578", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لححححا", + "expectation": "alef-ar.fina=5+101|_c.hah.beh=4+7|hah-ar.medi=4+133|hah-ar.medi.hah=3@0,122+109|hah-ar.medi.hah=2@0,244+109|hah-ar.medi.hah.alt=1@0,366+109|lam-ar.init.hah2.alt=0@63,256+578", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لسنتهم", + "expectation": "meem-ar.fina.round=5+554|heh-ar.medi.round=4+323|twodotsverticalabove-ar.vert.beh=3@5,298+0|_c.seen.beh=3+0|behDotless-ar.medi=3+128|dotabove-ar.beh=2@-7,385+0|_c.seen.beh=2+0|behDotless-ar.medi.high=2+128|_c.seen.beh=1+0|seen-ar.medi=1+401|_c.seen.beh=0+0|lam-ar.init=0+123", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "لسنتهم", + "expectation": "meem-ar.fina.round=5+554|heh-ar.medi.round=4+323|twodotsverticalabove-ar.vert.beh=3@5,298+0|_c.seen.beh=3+0|behDotless-ar.medi=3+128|dotabove-ar.beh=2@-7,385+0|_c.seen.beh=2+0|behDotless-ar.medi.high=2+128|_c.seen.beh=1+0|seen-ar.medi=1+401|_c.seen.beh=0+0|lam-ar.init=0+123", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "مسلمون", + "expectation": "dotabove-ar=5@5,191+0|noonghunna-ar=5+295|waw-ar.fina.round=4@400,0+892|meem-ar.medi.round3=3+398|lam-ar.medi.round=2+95|_c.seen.beh=1+0|seen-ar.medi.low=1+411|_c.seen.beh=0+0|meem-ar.init=0+425", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "مسلمون", + "expectation": "dotabove-ar=5@5,191+0|noonghunna-ar=5+295|waw-ar.fina.round=4@20,0+512|meem-ar.medi.round3=3+398|lam-ar.medi.round=2+95|_c.seen.beh=1+0|seen-ar.medi.low=1+411|_c.seen.beh=0+0|meem-ar.init=0+425", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "مَثلاً", + "expectation": "fathatan-ar.alt=3@335,503+0|lam_alef-ar.fina=3+510|threedotsupabove-ar.vert.beh=2@5,298+0|behDotless-ar.medi=2+128|fatha-ar=0@165,345+0|_c.seen.beh=0+0|meem-ar.init=0+425", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "مَثلاً", + "expectation": "fathatan-ar.alt=3@335,503+0|lam_alef-ar.fina=3+510|threedotsupabove-ar.vert.beh=2@5,298+0|behDotless-ar.medi=2+128|fatha-ar=0@165,345+0|_c.seen.beh=0+0|meem-ar.init=0+425", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "يلبسون", + "expectation": "dotabove-ar=5@5,191+0|noonghunna-ar=5+295|waw-ar.fina=4@400,0+872|seen-ar.medi.low=3+411|dotbelow-ar=2@17,-110+0|_c.seen.beh=2+0|behDotless-ar.medi.med=2+128|_c.seen.beh=1+0|lam-ar.medi=1+125|twodotsverticalbelow-ar=0@72,-73+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "يلبسون", + "expectation": "dotabove-ar=5@5,191+0|noonghunna-ar=5+295|waw-ar.fina=4@20,0+492|seen-ar.medi.low=3+411|dotbelow-ar=2@17,-110+0|_c.seen.beh=2+0|behDotless-ar.medi.med=2+128|_c.seen.beh=1+0|lam-ar.medi=1+125|twodotsverticalbelow-ar=0@72,-73+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "يُضِلُ", + "expectation": "damma-ar=4@-42,-19+0|lam-ar.fina=4+177|kasra-ar=2@293,-130+0|dotabove-ar=2@310,247+0|_c.seen.beh=2+0|sad-ar.medi=2+758|damma-ar=0@-84,98+0|twodotsverticalbelow-ar=0@51,-73+0|behDotless-ar.init=0@-21,0+109", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "يُضِلُ", + "expectation": "damma-ar=4@-42,-19+0|lam-ar.fina=4+177|kasra-ar=2@293,-130+0|dotabove-ar=2@310,247+0|_c.seen.beh=2+0|sad-ar.medi=2+758|damma-ar=0@-84,98+0|twodotsverticalbelow-ar=0@51,-73+0|behDotless-ar.init=0@-21,0+109", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "اطلططحی", + "expectation": "alefMaksura-ar.fina=6+282|_c.ain.yeh=5@-20,0+-5|hah-ar.medi=5@-40,0+93|tah-ar.medi.hah1=4@0,7+758|tah-ar.medi.hah1=3@-9,7+749|lam-ar.medi.hah1=2@-23,7+102|_c.seen.beh=1@0,122+0|tah-ar.init.hah1=1@0,7+765|alef-ar=0@400,0+1058", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "اطلططحی", + "expectation": "alefMaksura-ar.fina=6+282|_c.ain.yeh=5@-20,0+-5|hah-ar.medi=5@-40,0+93|tah-ar.medi.hah1=4@0,7+758|tah-ar.medi.hah1=3@-9,7+749|lam-ar.medi.hah1=2@-23,7+102|_c.seen.beh=1@0,122+0|tah-ar.init.hah1=1@0,7+765|alef-ar=0@20,0+678", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "الحجارة", + "expectation": "twodotsverticalabove-ar=6@154,403+0|heh-ar=6+356|reh-ar=5@350,0+800|alef-ar.fina=4@400,0+501|dotbelow-ar=3@220,-112+0|_c.hah.beh=3+7|hah-ar.medi=3+133|hah-ar.medi.hah.alt=2@0,122+109|lam-ar.init.hah2.alt=1@63,12+578|alef-ar=0@400,0+1058", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "الحجارة", + "expectation": "twodotsverticalabove-ar=6@154,403+0|heh-ar=6+356|reh-ar=5@-30,0+420|alef-ar.fina=4@20,0+121|dotbelow-ar=3@220,-112+0|_c.hah.beh=3+7|hah-ar.medi=3+133|hah-ar.medi.hah.alt=2@0,122+109|lam-ar.init.hah2.alt=1@63,12+578|alef-ar=0@20,0+678", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "الطبجبج", + "expectation": "dotbelow-ar=6@571,-122+0|hah-ar.fina=6+417|dotbelow-ar=5@404,-15+0|behDotless-ar.medi=5@0,115+128|dotbelow-ar=4@370,-17+0|_c.hah.beh=4@0,115+7|hah-ar.medi=4@0,115+133|dotbelow-ar=3@404,107+0|behDotless-ar.medi=3@0,237+128|_c.seen.beh=2@0,237+0|tah-ar.medi.hah2=2@0,7+758|lam-ar.init.hah2=1@-23,7+100|alef-ar=0@395,0+1053", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "الطبجبج", + "expectation": "dotbelow-ar=6@571,-122+0|hah-ar.fina=6+417|dotbelow-ar=5@404,-15+0|behDotless-ar.medi=5@0,115+128|dotbelow-ar=4@370,-17+0|_c.hah.beh=4@0,115+7|hah-ar.medi=4@0,115+133|dotbelow-ar=3@404,107+0|behDotless-ar.medi=3@0,237+128|_c.seen.beh=2@0,237+0|tah-ar.medi.hah2=2@0,7+758|lam-ar.init.hah2=1@-23,7+100|alef-ar=0@15,0+673", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "اللبجلج", + "expectation": "dotbelow-ar=6@571,-122+0|hah-ar.fina=6+417|lam-ar.medi.hah1=5+125|dotbelow-ar=4@270,-17+0|_c.hah.beh=4@0,115+7|hah-ar.medi=4@0,115+133|dotbelow-ar=3@404,107+0|behDotless-ar.medi=3@0,237+128|_c.seen.beh=2@0,237+0|lam-ar.medi.hah2=2@0,7+125|_c.seen.beh=1@0,237+0|lam-ar.init.hah2=1@0,7+203|alef-ar=0@395,0+1053", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "اللبجلج", + "expectation": "dotbelow-ar=6@571,-122+0|hah-ar.fina=6+417|lam-ar.medi.hah1=5+125|dotbelow-ar=4@270,-17+0|_c.hah.beh=4@0,115+7|hah-ar.medi=4@0,115+133|dotbelow-ar=3@404,107+0|behDotless-ar.medi=3@0,237+128|_c.seen.beh=2@0,237+0|lam-ar.medi.hah2=2@0,7+125|_c.seen.beh=1@0,237+0|lam-ar.init.hah2=1@0,7+203|alef-ar=0@15,0+673", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "الملتحف", + "expectation": "dotabove-ar=6@609,319+0|fehDotless-ar.fina=6+997|_c.hah.beh=5@3,0+10|hah-ar.medi=5+133|twodotsverticalabove-ar.beh=4@-22,424+0|behDotless-ar.medi=4@0,122+128|_c.seen.beh=3@0,122+0|lam-ar.medi.hah1=3@0,7+125|_c.seen.beh=2@0,122+0|meem-ar.medi=2@0,122+380|lam-ar.init.hah1=1@-25,7+98|alef-ar=0@395,0+1053", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "الملتحف", + "expectation": "dotabove-ar=6@609,319+0|fehDotless-ar.fina=6+997|_c.hah.beh=5@3,0+10|hah-ar.medi=5+133|twodotsverticalabove-ar.beh=4@-22,424+0|behDotless-ar.medi=4@0,122+128|_c.seen.beh=3@0,122+0|lam-ar.medi.hah1=3@0,7+125|_c.seen.beh=2@0,122+0|meem-ar.medi=2@0,122+380|lam-ar.init.hah1=1@-25,7+98|alef-ar=0@15,0+673", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "فسنيسرك", + "expectation": "kaf-ar=6+896|reh-ar.fina=5@325,0+718|seen-ar.medi.low=4+411|twodotsverticalbelow-ar=3@17,-137+0|_c.seen.beh=3+0|behDotless-ar.medi.med=3+128|dotabove-ar.beh=2@-7,385+0|_c.seen.beh=2+0|behDotless-ar.medi.high=2+128|_c.seen.beh=1+0|seen-ar.medi=1+401|dotabove-ar=0@-1,373+0|_c.feh.init.beh=0+174|fehDotless-ar.init=0@-114,0+220", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "فسنيسرك", + "expectation": "kaf-ar=6+896|reh-ar.fina=5@-55,0+338|seen-ar.medi.low=4+411|twodotsverticalbelow-ar=3@17,-137+0|_c.seen.beh=3+0|behDotless-ar.medi.med=3+128|dotabove-ar.beh=2@-7,385+0|_c.seen.beh=2+0|behDotless-ar.medi.high=2+128|_c.seen.beh=1+0|seen-ar.medi=1+401|dotabove-ar=0@-1,373+0|_c.feh.init.beh=0+174|fehDotless-ar.init=0@-114,0+220", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "كَلِمةٍ", + "expectation": "kasratan-ar=5@94,-127+0|twodotsverticalabove-ar=5@159,377+0|heh-ar.fina=5+339|_c.seen.beh=4+0|meem-ar.medi.round=4+425|kasra-ar=2@-15,-131+0|lam-ar.medi.round=2+95|fatha-ar=0@111,279+0|kaf-ar.init.alt=0@-5,0+760", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "كَلِمةٍ", + "expectation": "kasratan-ar=5@94,-127+0|twodotsverticalabove-ar=5@159,377+0|heh-ar.fina=5+339|_c.seen.beh=4+0|meem-ar.medi.round=4+425|kasra-ar=2@-15,-131+0|lam-ar.medi.round=2+95|fatha-ar=0@111,279+0|kaf-ar.init.alt=0@-5,0+760", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "ملجـًٔا", + "expectation": "fathatan-ar.alt=6@70,508+0|alef-ar.fina=6+101|hamza_fathatan-ar=3+0|dotbelow-ar=2@220,-112+0|_c.hah.beh=2+7|hah-ar.medi=2+133|lam-ar.medi.hah1=1@0,7+125|_c.seen.beh=0@0,122+0|meem-ar.init=0@0,122+425", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "ملجـًٔا", + "expectation": "fathatan-ar.alt=6@70,508+0|alef-ar.fina=6+101|hamza_fathatan-ar=3+0|dotbelow-ar=2@220,-112+0|_c.hah.beh=2+7|hah-ar.medi=2+133|lam-ar.medi.hah1=1@0,7+125|_c.seen.beh=0@0,122+0|meem-ar.init=0@0,122+425", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "ٮٮسـٰها", + "expectation": "alef-ar.fina=6+101|_c.feh.medi.beh=5+0|heh-ar.medi=5+357|alefabove-ar=3+0|_c.seen.beh=2+0|seen-ar.medi.low=2+411|_c.seen.beh=1+0|behDotless-ar.medi.med=1+128|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "ٮٮسـٰها", + "expectation": "alef-ar.fina=6+101|_c.feh.medi.beh=5+0|heh-ar.medi=5+357|alefabove-ar=3+0|_c.seen.beh=2+0|seen-ar.medi.low=2+411|_c.seen.beh=1+0|behDotless-ar.medi.med=1+128|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "الاصطخري", + "expectation": "twodotsverticalbelow-ar=7@350,-245+0|alefMaksura-ar=7+395|reh-ar.fina=6@400,0+793|dotabove-ar=5@-62,220+0|_c.hah.reh=5@-9,0+102|hah-ar.medi=5@-131,0+2|tah-ar.medi.hah1=4@0,7+758|sad-ar.init=3@-9,122+756|lam_alef-ar=1@400,0+942|alef-ar=0@340,0+998", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "الاصطخري", + "expectation": "twodotsverticalbelow-ar=7@350,-245+0|alefMaksura-ar=7+395|reh-ar.fina=6@20,0+413|dotabove-ar=5@-62,220+0|_c.hah.reh=5@-9,0+102|hah-ar.medi=5@-131,0+2|tah-ar.medi.hah1=4@0,7+758|sad-ar.init=3@-9,122+756|lam_alef-ar=1@20,0+562|alef-ar=0@-40,0+618", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "الحجَارة", + "expectation": "twodotsverticalabove-ar=7@154,403+0|heh-ar=7+356|reh-ar=6@350,0+800|alef-ar.fina=5@400,0+501|fatha-ar=3@1,285+0|dotbelow-ar=3@220,-112+0|_c.hah.beh=3+7|hah-ar.medi=3+133|hah-ar.medi.hah.alt=2@0,122+109|lam-ar.init.hah2.alt=1@63,12+578|alef-ar=0@400,0+1058", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "الحجَارة", + "expectation": "twodotsverticalabove-ar=7@154,403+0|heh-ar=7+356|reh-ar=6@-30,0+420|alef-ar.fina=5@20,0+121|fatha-ar=3@1,285+0|dotbelow-ar=3@220,-112+0|_c.hah.beh=3+7|hah-ar.medi=3+133|hah-ar.medi.hah.alt=2@0,122+109|lam-ar.init.hah2.alt=1@63,12+578|alef-ar=0@20,0+678", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "المتلجلج", + "expectation": "dotbelow-ar=7@571,-122+0|hah-ar.fina=7+417|lam-ar.medi.hah1=6+125|dotbelow-ar=5@270,-17+0|_c.hah.beh=5@0,115+7|hah-ar.medi=5@0,115+133|lam-ar.medi.hah2=4@0,7+125|twodotsverticalabove-ar.vert.beh=3@5,535+0|_c.seen.beh=3@0,237+0|behDotless-ar.medi=3@0,237+128|_c.seen.beh=2@0,237+0|meem-ar.medi=2@0,237+380|lam-ar.init.hah2=1@-25,7+98|alef-ar=0@395,0+1053", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "المتلجلج", + "expectation": "dotbelow-ar=7@571,-122+0|hah-ar.fina=7+417|lam-ar.medi.hah1=6+125|dotbelow-ar=5@270,-17+0|_c.hah.beh=5@0,115+7|hah-ar.medi=5@0,115+133|lam-ar.medi.hah2=4@0,7+125|twodotsverticalabove-ar.vert.beh=3@5,535+0|_c.seen.beh=3@0,237+0|behDotless-ar.medi=3@0,237+128|_c.seen.beh=2@0,237+0|meem-ar.medi=2@0,237+380|lam-ar.init.hah2=1@-25,7+98|alef-ar=0@15,0+673", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "المســيح", + "expectation": "hah-ar.fina=7+417|twodotsverticalbelow-ar=6@404,-42+0|behDotless-ar.medi=6@0,115+128|_c.ain.init.beh=5@0,115+95|kashida-ar=5@0,115+100|kashida-ar=4@0,115+100|seen-ar.medi.low=3@0,115+411|_c.seen.beh=2@0,115+0|meem-ar.medi=2@0,115+380|lam-ar.init.hah1=1@-25,0+98|alef-ar=0@395,0+1053", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "المســيح", + "expectation": "hah-ar.fina=7+417|twodotsverticalbelow-ar=6@404,-42+0|behDotless-ar.medi=6@0,115+128|_c.ain.init.beh=5@0,115+95|kashida-ar=5@0,115+100|kashida-ar=4@0,115+100|seen-ar.medi.low=3@0,115+411|_c.seen.beh=2@0,115+0|meem-ar.medi=2@0,115+380|lam-ar.init.hah1=1@-25,0+98|alef-ar=0@15,0+673", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بببببببب", + "expectation": "dotbelow-ar=7@834,-111+0|behDotless-ar.fina=7+984|dotbelow-ar=6@14,-110+0|_c.seen.beh=6+0|behDotless-ar.medi.high=6+128|dotbelow-ar=5@9,-110+0|_c.seen.beh=5+0|behDotless-ar.medi=5+128|dotbelow-ar=4@14,-110+0|_c.seen.beh=4+0|behDotless-ar.medi.high=4+128|dotbelow-ar=3@9,-110+0|_c.seen.beh=3+0|behDotless-ar.medi=3+128|dotbelow-ar=2@14,-110+0|_c.seen.beh=2+0|behDotless-ar.medi.high=2+128|dotbelow-ar=1@9,-110+0|_c.seen.beh=1+0|behDotless-ar.medi=1+128|dotbelow-ar=0@81,-46+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "بببببببب", + "expectation": "dotbelow-ar=7@834,-111+0|behDotless-ar.fina=7+984|dotbelow-ar=6@14,-110+0|_c.seen.beh=6+0|behDotless-ar.medi.high=6+128|dotbelow-ar=5@9,-110+0|_c.seen.beh=5+0|behDotless-ar.medi=5+128|dotbelow-ar=4@14,-110+0|_c.seen.beh=4+0|behDotless-ar.medi.high=4+128|dotbelow-ar=3@9,-110+0|_c.seen.beh=3+0|behDotless-ar.medi=3+128|dotbelow-ar=2@14,-110+0|_c.seen.beh=2+0|behDotless-ar.medi.high=2+128|dotbelow-ar=1@9,-110+0|_c.seen.beh=1+0|behDotless-ar.medi=1+128|dotbelow-ar=0@81,-46+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "فتستجيبو", + "expectation": "waw-ar.fina=7+472|dotbelow-ar=6@-1,-140+0|behDotless-ar.medi=6@-10,0+118|twodotsverticalbelow-ar=5@14,-137+0|_c.seen.beh=5+0|behDotless-ar.medi.high=5+128|dotbelow-ar=4@220,-112+0|_c.hah.beh=4+7|hah-ar.medi=4+133|twodotsverticalabove-ar.beh=3@-22,424+0|behDotless-ar.medi=3@0,122+128|_c.seen.beh=2@0,122+0|seen-ar.medi.low=2@0,122+411|twodotsverticalabove-ar.beh=1@-28,473+0|_c.seen.beh=1@0,122+0|behDotless-ar.medi.med=1@0,122+128|dotabove-ar=0@-1,495+0|_c.feh.init.beh=0@0,122+174|fehDotless-ar.init=0@-114,122+220", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "فتستجيبو", + "expectation": "waw-ar.fina=7+472|dotbelow-ar=6@-1,-140+0|behDotless-ar.medi=6@-10,0+118|twodotsverticalbelow-ar=5@14,-137+0|_c.seen.beh=5+0|behDotless-ar.medi.high=5+128|dotbelow-ar=4@220,-112+0|_c.hah.beh=4+7|hah-ar.medi=4+133|twodotsverticalabove-ar.beh=3@-22,424+0|behDotless-ar.medi=3@0,122+128|_c.seen.beh=2@0,122+0|seen-ar.medi.low=2@0,122+411|twodotsverticalabove-ar.beh=1@-28,473+0|_c.seen.beh=1@0,122+0|behDotless-ar.medi.med=1@0,122+128|dotabove-ar=0@-1,495+0|_c.feh.init.beh=0@0,122+174|fehDotless-ar.init=0@-114,122+220", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "يستهزءون", + "expectation": "dotabove-ar=7@5,191+0|noonghunna-ar=7+295|waw-ar=6@400,0+909|hamza-ar.alt=5@216,-28+0|dotabove-ar.reh=4@446,85+0|reh-ar.fina=4@300,0+693|heh-ar.medi.round=3+323|twodotsverticalabove-ar.vert.beh=2@-1,347+0|_c.seen.beh=2+0|behDotless-ar.medi.med=2+128|_c.seen.beh=1+0|seen-ar.medi.low=1+411|twodotsverticalbelow-ar=0@72,-73+0|_c.seen.beh=0+0|behDotless-ar.init.med=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "يستهزءون", + "expectation": "dotabove-ar=7@5,191+0|noonghunna-ar=7+295|waw-ar=6@20,0+529|hamza-ar.alt=5@-164,-28+0|dotabove-ar.reh=4@66,85+0|reh-ar.fina=4@-80,0+313|heh-ar.medi.round=3+323|twodotsverticalabove-ar.vert.beh=2@-1,347+0|_c.seen.beh=2+0|behDotless-ar.medi.med=2+128|_c.seen.beh=1+0|seen-ar.medi.low=1+411|twodotsverticalbelow-ar=0@72,-73+0|_c.seen.beh=0+0|behDotless-ar.init.med=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "يــــتخذ", + "expectation": "dotabove-ar=7@426,249+0|dal-ar.fina=7+875|dotabove-ar=6@-33,220+0|_c.hah.dal=6+71|hah-ar.medi=6@-71,0+62|twodotsverticalabove-ar.beh=5@-22,424+0|behDotless-ar.medi=5@0,122+128|_c.ain.init.beh=4@0,122+95|kashida-ar=4@0,122+100|kashida-ar=3@0,122+100|kashida-ar=2@0,122+100|kashida-ar=1@0,122+100|twodotsverticalbelow-ar=0@72,49+0|behDotless-ar.init=0@0,122+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "يــــتخذ", + "expectation": "dotabove-ar=7@426,249+0|dal-ar.fina=7+875|dotabove-ar=6@-33,220+0|_c.hah.dal=6+71|hah-ar.medi=6@-71,0+62|twodotsverticalabove-ar.beh=5@-22,424+0|behDotless-ar.medi=5@0,122+128|_c.ain.init.beh=4@0,122+95|kashida-ar=4@0,122+100|kashida-ar=3@0,122+100|kashida-ar=2@0,122+100|kashida-ar=1@0,122+100|twodotsverticalbelow-ar=0@72,49+0|behDotless-ar.init=0@0,122+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "التمنفحمد", + "expectation": "dal-ar.fina=8+875|meem-ar.medi=7+380|_c.ain.meem=6@13,0+48|hah-ar.medi=6@-39,0+94|dotabove-ar=5@1,451+0|fehDotless-ar.medi=5@0,122+377|dotabove-ar.beh=4@8,416+0|_c.seen.beh=4@0,122+0|behDotless-ar.medi=4@0,122+128|_c.seen.beh=3@0,122+0|meem-ar.medi.round=3@0,122+425|twodotsverticalabove-ar.beh=2@-59,400+0|behDotless-ar.medi.round=2@0,122+108|_c.seen.beh=1@0,122+0|lam-ar.init.hah1=1@0,7+123|alef-ar=0@395,0+1053", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "التمنفحمد", + "expectation": "dal-ar.fina=8+875|meem-ar.medi=7+380|_c.ain.meem=6@13,0+48|hah-ar.medi=6@-39,0+94|dotabove-ar=5@1,451+0|fehDotless-ar.medi=5@0,122+377|dotabove-ar.beh=4@8,416+0|_c.seen.beh=4@0,122+0|behDotless-ar.medi=4@0,122+128|_c.seen.beh=3@0,122+0|meem-ar.medi.round=3@0,122+425|twodotsverticalabove-ar.beh=2@-59,400+0|behDotless-ar.medi.round=2@0,122+108|_c.seen.beh=1@0,122+0|lam-ar.init.hah1=1@0,7+123|alef-ar=0@15,0+673", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "ليواطـُٔو", + "expectation": "waw-ar.fina=8+472|damma-ar=5@-65,96+0|tah-ar.init=4+765|alef-ar=3@365,0+1023|waw-ar.fina=2@280,0+752|twodotsverticalbelow-ar=1@-1,-167+0|behDotless-ar.medi=1@-10,0+118|_c.seen.beh=0+0|lam-ar.init=0+123", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "ليواطـُٔو", + "expectation": "waw-ar.fina=8+472|damma-ar=5@-65,96+0|tah-ar.init=4+765|alef-ar=3@-15,0+643|waw-ar.fina=2@-100,0+372|twodotsverticalbelow-ar=1@-1,-167+0|behDotless-ar.medi=1@-10,0+118|_c.seen.beh=0+0|lam-ar.init=0+123", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "يستهزءُون", + "expectation": "dotabove-ar=8@5,191+0|noonghunna-ar=8+295|waw-ar=7@400,0+909|hamza-ar.alt=5@216,-28+0|dotabove-ar.reh=4@446,85+0|reh-ar.fina=4@300,0+693|heh-ar.medi.round=3+323|twodotsverticalabove-ar.vert.beh=2@-1,347+0|_c.seen.beh=2+0|behDotless-ar.medi.med=2+128|_c.seen.beh=1+0|seen-ar.medi.low=1+411|twodotsverticalbelow-ar=0@72,-73+0|_c.seen.beh=0+0|behDotless-ar.init.med=0+130", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "يستهزءُون", + "expectation": "dotabove-ar=8@5,191+0|noonghunna-ar=8+295|waw-ar=7@20,0+529|hamza-ar.alt=5@-164,-28+0|dotabove-ar.reh=4@66,85+0|reh-ar.fina=4@-80,0+313|heh-ar.medi.round=3+323|twodotsverticalabove-ar.vert.beh=2@-1,347+0|_c.seen.beh=2+0|behDotless-ar.medi.med=2+128|_c.seen.beh=1+0|seen-ar.medi.low=1+411|twodotsverticalbelow-ar=0@72,-73+0|_c.seen.beh=0+0|behDotless-ar.init.med=0+130", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "قـلم", + "expectation": "meem-ar.fina.round=3+554|lam-ar.medi.round.kashida=2@-20,0+199|kashida-ar=1+100|twodotsverticalabove-ar=0@-91,381+0|fehDotless-ar.init=0+334", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "قـلم", + "expectation": "meem-ar.fina.round=3+554|lam-ar.medi.round.kashida=2@-20,0+199|kashida-ar=1+100|twodotsverticalabove-ar=0@-91,381+0|fehDotless-ar.init=0+334", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "قـلن", + "expectation": "dotabove-ar=3@-3,101+0|noonghunna-ar.fina=3+250|lam-ar.medi.round.kashida=2@-20,0+199|kashida-ar=1+100|twodotsverticalabove-ar=0@-91,381+0|fehDotless-ar.init=0+334", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "قـلن", + "expectation": "dotabove-ar=3@-3,101+0|noonghunna-ar.fina=3+250|lam-ar.medi.round.kashida=2@-20,0+199|kashida-ar=1+100|twodotsverticalabove-ar=0@-91,381+0|fehDotless-ar.init=0+334", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "فـبم", + "expectation": "meem-ar.fina.round=3+554|dotbelow-ar=2@-15,-110+0|behDotless-ar.medi.round.kashida=2+178|kashida-ar=1+100|dotabove-ar=0@-61,373+0|fehDotless-ar.init=0+334", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "فـبم", + "expectation": "meem-ar.fina.round=3+554|dotbelow-ar=2@-15,-110+0|behDotless-ar.medi.round.kashida=2+178|kashida-ar=1+100|dotabove-ar=0@-61,373+0|fehDotless-ar.init=0+334", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "فـبن", + "expectation": "dotabove-ar=3@-3,101+0|noonghunna-ar.fina=3+250|dotbelow-ar=2@-15,-110+0|behDotless-ar.medi.round.kashida=2+178|kashida-ar=1+100|dotabove-ar=0@-61,373+0|fehDotless-ar.init=0+334", + "variations": { + "SPAC": 0.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "Raqq.ttf", + "input": "فـبن", + "expectation": "dotabove-ar=3@-3,101+0|noonghunna-ar.fina=3+250|dotbelow-ar=2@-15,-110+0|behDotless-ar.medi.round.kashida=2+178|kashida-ar=1+100|dotabove-ar=0@-61,373+0|fehDotless-ar.init=0+334", + "variations": { + "SPAC": -100.0, + "MSHQ": 10.0, + "jstf": 0.0 + } + }, + { + "only": "RaqqSura.ttf", + "input": "ر ارا", + "expectation": "alef-ar=4+642|reh-ar=3@-100,0+353|alef-ar=2@-40,0+602|space.mark=1+0|reh-ar=0@-100,0+353", + "variations": { + "MSHQ": 10.0 + } + }, + { + "only": "RaqqSura.ttf", + "input": "مر امرا", + "expectation": "alef-ar=6+642|reh-ar.fina=5@-150,0+237|meem-ar.init.round=4@20,0+418|alef-ar=3@-21,0+621|space.mark=2+0|reh-ar.fina=1@-150,0+237|meem-ar.init.round=0@20,0+418", + "variations": { + "MSHQ": 10.0 + } + }, + { + "only": "RaqqSura.ttf", + "input": "حال", + "expectation": "lam-ar.short=2+186|alef-ar.fina.lam=1+90|hah-ar.init=0+703", + "variations": { + "MSHQ": 10.0 + } + }, + { + "only": "RaqqSura.ttf", + "input": "قال", + "expectation": "lam-ar.short=2+186|twodotsverticalabove-ar=0@106,402+0|fehDotless_alef-ar=0@-17,0+543", + "variations": { + "MSHQ": 10.0 + } + }, + { + "only": "RaqqSura.ttf", + "input": "حالت", + "expectation": "twodotsverticalabove-ar=3@803,264+0|behDotless-ar.fina=3+984|lam-ar.init.short=2+100|alef-ar.fina.lam=1+90|hah-ar.init=0+703", + "variations": { + "MSHQ": 10.0 + } + }, + { + "only": "RaqqSura.ttf", + "input": "قالت", + "expectation": "twodotsverticalabove-ar=3@803,264+0|behDotless-ar.fina=3+984|lam-ar.init.short=2+100|twodotsverticalabove-ar=0@115,402+0|fehDotless_alef-ar=0@-8,0+552", + "variations": { + "MSHQ": 10.0 + } + }, + { + "only": "RaqqSura.ttf", + "input": "بني", + "expectation": "behDotless_alefMaksura-ar.fina=1+110|behDotless-ar.init.high=0+100", + "features": { + "ss01": 1 + }, + "variations": { + "MSHQ": 10.0 + } + }, + { + "only": "RaqqSura.ttf", + "input": "نبي", + "expectation": "behDotless_alefMaksura-ar.fina=1+110|behDotless-ar.init.high=0+100", + "features": { + "ss01": 1 + }, + "variations": { + "MSHQ": 10.0 + } + }, + { + "only": "RaqqSura.ttf", + "input": "تخطبني", + "expectation": "behDotless_alefMaksura-ar.fina=4+110|behDotless-ar.medi.high=3+100|tah-ar.medi=2+758|hah-ar.medi.alt=1+135|behDotless-ar.init.hah=0@63,5+572", + "features": { + "ss01": 1 + }, + "variations": { + "MSHQ": 10.0 + } + }, + { + "only": "RaqqSura.ttf", + "input": "بي", + "expectation": "twodotsverticalbelow-ar=1@332,-510+0|alefMaksura-ar.fina.wide.salt=1+267|dotbelow-ar=0@72,-46+0|behDotless-ar.init=0+100", + "features": { + "salt": 1 + }, + "variations": { + "MSHQ": 10.0 + } + }, + { + "only": "RaqqSura.ttf", + "input": "حى", + "expectation": "alefMaksura-ar.fina.salt=1+282|hah-ar.init=0+703", + "features": { + "salt": 1 + }, + "variations": { + "MSHQ": 10.0 + } + }, + { + "only": "RaqqSura.ttf", + "input": "سى", + "expectation": "seen_alefMaksura-ar=0+346", + "features": { + "salt": 1 + }, + "variations": { + "MSHQ": 10.0 + } + }, + { + "only": "RaqqSura.ttf", + "input": "سي", + "expectation": "twodotsverticalbelow-ar=0@330,-337+0|seen_alefMaksura-ar=0+346", + "features": { + "salt": 1 + }, + "variations": { + "MSHQ": 10.0 + } + }, + { + "only": "RaqqSura.ttf", + "input": "شي", + "expectation": "twodotsverticalbelow-ar=0@330,-337+0|threedotshorizontalabove-ar.3=0@-35,167+0|seen_alefMaksura-ar=0+346", + "features": { + "salt": 1 + }, + "variations": { + "MSHQ": 10.0 + } + }, + { + "only": "RaqqSura.ttf", + "input": "عى", + "expectation": "alefMaksura-ar.fina.salt=1+282|ain-ar.init=0@-43,0+637", + "features": { + "salt": 1 + }, + "variations": { + "MSHQ": 10.0 + } + }, + { + "only": "RaqqSura.ttf", + "input": "عي", + "expectation": "twodotsverticalbelow-ar=1@259,-523+0|alefMaksura-ar.fina.salt=1+282|ain-ar.init=0@-43,0+637", + "features": { + "salt": 1 + }, + "variations": { + "MSHQ": 10.0 + } + }, + { + "only": "RaqqSura.ttf", + "input": "فى", + "expectation": "alefMaksura-ar.fina.wide.salt=1+267|dotabove-ar=0@-67,373+0|fehDotless-ar.init.yeh=0+328", + "features": { + "salt": 1 + }, + "variations": { + "MSHQ": 10.0 + } + }, + { + "only": "RaqqSura.ttf", + "input": "في", + "expectation": "twodotsverticalbelow-ar=1@332,-510+0|alefMaksura-ar.fina.wide.salt=1+267|dotabove-ar=0@-67,373+0|fehDotless-ar.init.yeh=0+328", + "features": { + "salt": 1 + }, + "variations": { + "MSHQ": 10.0 + } + }, + { + "only": "RaqqSura.ttf", + "input": "كي", + "expectation": "twodotsverticalbelow-ar=1@259,-523+0|alefMaksura-ar.fina.salt=1+282|kaf-ar.init=0@-36,0+729", + "features": { + "salt": 1 + }, + "variations": { + "MSHQ": 10.0 + } + }, + { + "only": "RaqqSura.ttf", + "input": "لي", + "expectation": "twodotsverticalbelow-ar=1@332,-510+0|alefMaksura-ar.fina.wide.salt=1+267|lam-ar.init=0+123", + "features": { + "salt": 1 + }, + "variations": { + "MSHQ": 10.0 + } + }, + { + "only": "RaqqSura.ttf", + "input": "يٍ", + "expectation": "kasratan-ar.alt=0@285,-257+0|twodotsverticalbelow-ar=0@259,-436+0|alefMaksura-ar.salt=0+328", + "features": { + "salt": 1 + }, + "variations": { + "MSHQ": 10.0 + } + }, + { + "only": "RaqqSura.ttf", + "input": "يِ", + "expectation": "kasra-ar=0@285,-190+0|twodotsverticalbelow-ar=0@259,-436+0|alefMaksura-ar.salt=0+328", + "features": { + "salt": 1 + }, + "variations": { + "MSHQ": 10.0 + } + }, + { + "only": "RaqqSura.ttf", + "input": "بسي", + "expectation": "twodotsverticalbelow-ar=1@339,-337+0|seen_alefMaksura-ar.fina=1+343|dotbelow-ar=0@51,-46+0|behDotless-ar.init.high=0+100", + "features": { + "salt": 1 + }, + "variations": { + "MSHQ": 10.0 + } + }, + { + "only": "RaqqSura.ttf", + "input": "بشي", + "expectation": "twodotsverticalbelow-ar=1@339,-337+0|threedotshorizontalabove-ar.3=1@-35,167+0|seen_alefMaksura-ar.fina=1+343|dotbelow-ar=0@51,-46+0|behDotless-ar.init.high=0+100", + "features": { + "salt": 1 + }, + "variations": { + "MSHQ": 10.0 + } + }, + { + "only": "RaqqSura.ttf", + "input": "بني", + "expectation": "twodotsverticalbelow-ar=1@311,-329+0|dotabove-ar=1@-10,297+0|behDotless_alefMaksura-ar.fina=1+110|dotbelow-ar=0@51,-46+0|behDotless-ar.init.high=0+100", + "features": { + "salt": 1 + }, + "variations": { + "MSHQ": 10.0 + } + }, + { + "only": "RaqqSura.ttf", + "input": "جنى", + "expectation": "dotabove-ar=1@-10,297+0|behDotless_alefMaksura-ar.fina=1+110|dotbelow-ar=0@213,-112+0|hah-ar.init=0+703", + "features": { + "salt": 1 + }, + "variations": { + "MSHQ": 10.0 + } + }, + { + "only": "RaqqSura.ttf", + "input": "سسي", + "expectation": "twodotsverticalbelow-ar=1@339,-337+0|seen_alefMaksura-ar.fina=1+343|seen-ar.init=0+345", + "features": { + "salt": 1 + }, + "variations": { + "MSHQ": 10.0 + } + }, + { + "only": "RaqqSura.ttf", + "input": "صسي", + "expectation": "twodotsverticalbelow-ar=1@339,-337+0|seen_alefMaksura-ar.fina=1+343|sad-ar.init=0+765", + "features": { + "salt": 1 + }, + "variations": { + "MSHQ": 10.0 + } + }, + { + "only": "RaqqSura.ttf", + "input": "طسي", + "expectation": "twodotsverticalbelow-ar=1@339,-337+0|seen_alefMaksura-ar.fina=1+343|tah-ar.init=0+765", + "features": { + "salt": 1 + }, + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝133", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "طلى", + "expectation": "lam_alefMaksura-ar.fina.short=1+110|tah-ar.init=0+765", + "features": { + "salt": 1 + }, + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝134", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "عسي", + "expectation": "twodotsverticalbelow-ar=1@339,-337+0|seen_alefMaksura-ar.fina=1+343|ain-ar.init=0+680", + "features": { + "salt": 1 + }, + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝135", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar.05=0+400", - "RaqqSura.ttf": "endofayah-ar.05=0+400" + "only": "RaqqSura.ttf", + "input": "على", + "expectation": "lam_alefMaksura-ar.fina=1+110|ain-ar.init=0+680", + "features": { + "salt": 1 + }, + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝136", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "فسي", + "expectation": "twodotsverticalbelow-ar=1@339,-337+0|seen_alefMaksura-ar.fina=1+343|dotabove-ar=0@-61,373+0|fehDotless-ar.init=0+334", + "features": { + "salt": 1 + }, + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝137", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "كسي", + "expectation": "twodotsverticalbelow-ar=1@339,-337+0|seen_alefMaksura-ar.fina=1+343|kaf-ar.init=0@-5,0+760", + "features": { + "salt": 1 + }, + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝138", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "لسى", + "expectation": "seen_alefMaksura-ar.fina=1+343|lam-ar.init=0+123", + "features": { + "salt": 1 + }, + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝139", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "لسي", + "expectation": "twodotsverticalbelow-ar=1@339,-337+0|seen_alefMaksura-ar.fina=1+343|lam-ar.init=0+123", + "features": { + "salt": 1 + }, + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝13", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "ليً", + "expectation": "fathatan-ar=1@-11,199+0|twodotsverticalbelow-ar=1@332,-510+0|alefMaksura-ar.fina.wide.salt=1+267|lam-ar.init=0+123", + "features": { + "salt": 1 + }, + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝140", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar.10=0+1117|ayah.140=1+0", - "RaqqSura.ttf": "endofayah-ar.10=0+1117|ayah.140=1+0" + "only": "RaqqSura.ttf", + "input": "مسي", + "expectation": "twodotsverticalbelow-ar=1@339,-337+0|seen_alefMaksura-ar.fina=1+343|meem-ar.init=0+425", + "features": { + "salt": 1 + }, + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝141", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "ملى", + "expectation": "lam_alefMaksura-ar.fina=1+110|meem-ar.init=0+425", + "features": { + "salt": 1 + }, + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝142", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "نسى", + "expectation": "seen_alefMaksura-ar.fina=1+343|dotabove-ar.beh=0@-15,380+0|behDotless-ar.init.high=0+100", + "features": { + "salt": 1 + }, + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝143", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "نعى", + "expectation": "alefMaksura-ar.fina.salt=2+282|ain-ar.medi=1+202|dotabove-ar.beh=0@-15,380+0|behDotless-ar.init.high=0+100", + "features": { + "salt": 1 + }, + "variations": { + "MSHQ": 10.0 + } + }, + { + "only": "RaqqSura.ttf", + "input": "نفى", + "expectation": "alefMaksura-ar.fina.salt=2+282|dotabove-ar=1@1,329+0|fehDotless-ar.medi=1+377|dotabove-ar=0@-20,297+0|behDotless-ar.init=0+100", + "features": { + "salt": 1 + }, + "variations": { + "MSHQ": 10.0 + } + }, + { + "only": "RaqqSura.ttf", + "input": "هسي", + "expectation": "twodotsverticalbelow-ar=1@339,-337+0|seen_alefMaksura-ar.fina=1+343|heh-ar.init=0@-26,0+335", + "features": { + "salt": 1 + }, + "variations": { + "MSHQ": 10.0 + } + }, + { + "only": "RaqqSura.ttf", + "input": "ببسي", + "expectation": "twodotsverticalbelow-ar=2@339,-337+0|seen_alefMaksura-ar.fina=2+343|dotbelow-ar=1@-13,-110+0|behDotless-ar.medi.high=1+100|dotbelow-ar=0@72,-46+0|behDotless-ar.init=0+100", + "features": { + "salt": 1 + }, + "variations": { + "MSHQ": 10.0 + } + }, + { + "only": "RaqqSura.ttf", + "input": "بسسي", + "expectation": "twodotsverticalbelow-ar=2@339,-337+0|seen_alefMaksura-ar.fina=2+343|seen-ar.medi=1+345|dotbelow-ar=0@51,-46+0|behDotless-ar.init.high=0+100", + "features": { + "salt": 1 + }, + "variations": { + "MSHQ": 10.0 + } + }, + { + "only": "RaqqSura.ttf", + "input": "بصسي", + "expectation": "twodotsverticalbelow-ar=2@339,-337+0|seen_alefMaksura-ar.fina=2+343|sad-ar.medi=1+758|dotbelow-ar=0@72,-46+0|behDotless-ar.init=0+100", + "features": { + "salt": 1 + }, + "variations": { + "MSHQ": 10.0 + } + }, + { + "only": "RaqqSura.ttf", + "input": "بطسي", + "expectation": "twodotsverticalbelow-ar=2@339,-337+0|seen_alefMaksura-ar.fina=2+343|tah-ar.medi=1+758|dotbelow-ar=0@72,-46+0|behDotless-ar.init=0+100", + "features": { + "salt": 1 + }, + "variations": { + "MSHQ": 10.0 + } + }, + { + "only": "RaqqSura.ttf", + "input": "بعسي", + "expectation": "twodotsverticalbelow-ar=2@339,-337+0|seen_alefMaksura-ar.fina=2+343|ain-ar.medi=1+202|dotbelow-ar=0@51,-46+0|behDotless-ar.init.high=0+100", + "features": { + "salt": 1 + }, + "variations": { + "MSHQ": 10.0 + } + }, + { + "only": "RaqqSura.ttf", + "input": "بفسي", + "expectation": "twodotsverticalbelow-ar=2@339,-337+0|seen_alefMaksura-ar.fina=2+343|dotabove-ar=1@1,329+0|fehDotless-ar.medi=1+377|dotbelow-ar=0@72,-46+0|behDotless-ar.init=0+100", + "features": { + "salt": 1 + }, + "variations": { + "MSHQ": 10.0 + } + }, + { + "only": "RaqqSura.ttf", + "input": "بكسي", + "expectation": "twodotsverticalbelow-ar=2@339,-337+0|seen_alefMaksura-ar.fina=2+343|kaf-ar.medi=1@-5,0+753|dotbelow-ar=0@72,-46+0|behDotless-ar.init=0+100", + "features": { + "salt": 1 + }, + "variations": { + "MSHQ": 10.0 + } + }, + { + "only": "RaqqSura.ttf", + "input": "بلسي", + "expectation": "twodotsverticalbelow-ar=2@339,-337+0|seen_alefMaksura-ar.fina=2+343|lam-ar.medi=1+100|dotbelow-ar=0@72,-46+0|behDotless-ar.init=0+100", + "features": { + "salt": 1 + }, + "variations": { + "MSHQ": 10.0 + } + }, + { + "only": "RaqqSura.ttf", + "input": "بمسي", + "expectation": "twodotsverticalbelow-ar=2@339,-337+0|seen_alefMaksura-ar.fina=2+343|meem-ar.medi=1@-28,0+352|dotbelow-ar=0@72,-46+0|behDotless-ar.init=0+100", + "features": { + "salt": 1 + }, + "variations": { + "MSHQ": 10.0 + } + }, + { + "only": "RaqqSura.ttf", + "input": "بهسي", + "expectation": "twodotsverticalbelow-ar=2@339,-337+0|seen_alefMaksura-ar.fina=2+343|heh-ar.medi=1@-26,0+328|dotbelow-ar=0@72,-46+0|behDotless-ar.init.med=0+100", + "features": { + "salt": 1 + }, + "variations": { + "MSHQ": 10.0 + } + }, + { + "only": "RaqqSura.ttf", + "input": "عيسى", + "expectation": "seen_alefMaksura-ar.fina=2+343|twodotsverticalbelow-ar=1@-13,-137+0|behDotless-ar.medi.high=1+100|ain-ar.init=0+680", + "features": { + "salt": 1 + }, + "variations": { + "MSHQ": 10.0 + } + }, + { + "only": "RaqqSura.ttf", + "input": "فلِي", + "expectation": "twodotsverticalbelow-ar=1@311,-329+0|kasra-ar=1@-19,-132+0|lam_alefMaksura-ar.fina=1+110|dotabove-ar=0@-61,373+0|fehDotless-ar.init=0+334", + "features": { + "salt": 1 + }, + "variations": { + "MSHQ": 10.0 + } + }, + { + "only": "RaqqSura.ttf", + "input": "لسسي", + "expectation": "twodotsverticalbelow-ar=2@339,-337+0|seen_alefMaksura-ar.fina=2+343|seen-ar.medi=1+345|lam-ar.init=0+123", + "features": { + "salt": 1 + }, + "variations": { + "MSHQ": 10.0 + } + }, + { + "only": "RaqqSura.ttf", + "input": "ممسي", + "expectation": "twodotsverticalbelow-ar=2@339,-337+0|seen_alefMaksura-ar.fina=2+343|meem-ar.medi.round=1+425|meem-ar.init.round=0+398", + "features": { + "salt": 1 + }, + "variations": { + "MSHQ": 10.0 + } + }, + { + "only": "RaqqSura.ttf", + "input": "يجبي", + "expectation": "twodotsverticalbelow-ar=2@311,-329+0|dotbelow-ar=2@-14,-110+0|behDotless_alefMaksura-ar.fina=2+110|dotbelow-ar=1@213,-112+0|hah-ar.medi.alt=1+135|twodotsverticalbelow-ar=0@167,158+0|behDotless-ar.init.hah=0@63,5+572", + "features": { + "salt": 1 + }, + "variations": { + "MSHQ": 10.0 + } + }, + { + "only": "RaqqSura.ttf", + "input": "يحيي", + "expectation": "twodotsverticalbelow-ar=2@311,-329+0|twodotsverticalbelow-ar=2@-14,-137+0|behDotless_alefMaksura-ar.fina=2+110|hah-ar.medi.alt=1+135|twodotsverticalbelow-ar=0@167,158+0|behDotless-ar.init.hah=0@63,5+572", + "features": { + "salt": 1 + }, + "variations": { + "MSHQ": 10.0 + } + }, + { + "only": "RaqqSura.ttf", + "input": "النبي", + "expectation": "twodotsverticalbelow-ar=3@311,-329+0|dotbelow-ar=3@-14,-110+0|behDotless_alefMaksura-ar.fina=3+110|dotabove-ar.beh=2@-15,382+0|behDotless-ar.medi.high=2+100|lam-ar.init.short=1+100|alef-ar.lam=0+642", + "features": { + "salt": 1 + }, + "variations": { + "MSHQ": 10.0 + } + }, + { + "only": "RaqqSura.ttf", + "input": "بببسي", + "expectation": "twodotsverticalbelow-ar=3@339,-337+0|seen_alefMaksura-ar.fina=3+343|dotbelow-ar=2@-13,-110+0|behDotless-ar.medi.high=2+100|dotbelow-ar=1@-19,-110+0|behDotless-ar.medi=1+100|dotbelow-ar=0@51,-46+0|behDotless-ar.init.high=0+100", + "features": { + "salt": 1 + }, + "variations": { + "MSHQ": 10.0 + } + }, + { + "only": "RaqqSura.ttf", + "input": "بيحيي", + "expectation": "twodotsverticalbelow-ar=3@311,-329+0|twodotsverticalbelow-ar=3@-14,-137+0|behDotless_alefMaksura-ar.fina=3+110|hah-ar.medi=2+133|twodotsverticalbelow-ar=1@376,-35+0|behDotless-ar.medi=1@0,122+100|dotbelow-ar=0@51,76+0|behDotless-ar.init.high=0@0,122+360", + "features": { + "salt": 1 + }, + "variations": { + "MSHQ": 10.0 + } + }, + { + "only": "RaqqSura.ttf", + "input": "ببببسي", + "expectation": "twodotsverticalbelow-ar=4@339,-337+0|seen_alefMaksura-ar.fina=4+343|dotbelow-ar=3@-13,-110+0|behDotless-ar.medi.high=3+100|dotbelow-ar=2@-19,-110+0|behDotless-ar.medi=2+100|dotbelow-ar=1@-13,-110+0|behDotless-ar.medi.high=1+100|dotbelow-ar=0@72,-46+0|behDotless-ar.init=0+100", + "features": { + "salt": 1 + }, + "variations": { + "MSHQ": 10.0 + } + }, + { + "only": "RaqqSura.ttf", + "input": "تخطبني", + "expectation": "twodotsverticalbelow-ar=4@311,-329+0|dotabove-ar=4@-10,297+0|behDotless_alefMaksura-ar.fina=4+110|dotbelow-ar=3@-13,-110+0|behDotless-ar.medi.high=3+100|tah-ar.medi=2+758|dotabove-ar=1@-22,198+0|hah-ar.medi.alt=1+135|twodotsverticalabove-ar.beh=0@14,407+0|behDotless-ar.init.hah=0@63,5+572", + "features": { + "salt": 1 + }, + "variations": { + "MSHQ": 10.0 + } + }, + { + "only": "RaqqSura.ttf", + "input": "اطلططحی", + "expectation": "alefMaksura-ar.fina.salt=6+282|hah-ar.medi=5+133|tah-ar.medi.hah1=4@0,7+758|tah-ar.medi.hah1=3@-9,7+749|lam-ar.medi.hah1=2@-23,7+102|tah-ar.init.hah1=1@0,7+765|alef-ar=0+642", + "features": { + "salt": 1 + }, + "variations": { + "MSHQ": 10.0 + } + }, + { + "only": "RaqqSura.ttf", + "input": "الاصطخري", + "expectation": "twodotsverticalbelow-ar=7@259,-436+0|alefMaksura-ar.salt=7+328|reh-ar.fina=6@-25,0+362|dotabove-ar=5@-33,220+0|hah-ar.medi=5+133|tah-ar.medi.hah1=4@0,7+758|sad-ar.init=3@-9,122+756|lam_alef-ar=1@-32,0+510|alef-ar=0@-113,0+529", + "features": { + "salt": 1 + }, + "variations": { + "MSHQ": 10.0 + } + }, + { + "only": "RaqqSura.ttf", + "input": "بي", + "expectation": "twodotsverticalbelow-ar=1@449,-139+0|yehbarree-ar.fina.baseline=1+297|dotbelow-ar=0@72,64+0|behDotless-ar.init=0@0,110+760", + "features": { + "salt": 2 + }, + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝144", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "حى", + "expectation": "yehbarree-ar.fina.baseline=1+297|hah-ar.init=0@0,110+763", + "features": { + "salt": 2 + }, + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝145", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar.05=0+400", - "RaqqSura.ttf": "endofayah-ar.05=0+400" + "only": "RaqqSura.ttf", + "input": "سى", + "expectation": "seen_alefMaksura-ar=0+346", + "features": { + "salt": 2 + }, + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝146", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "سي", + "expectation": "twodotsverticalbelow-ar=0@330,-337+0|seen_alefMaksura-ar=0+346", + "features": { + "salt": 2 + }, + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝147", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "شي", + "expectation": "twodotsverticalbelow-ar=0@330,-337+0|threedotshorizontalabove-ar.3=0@-35,167+0|seen_alefMaksura-ar=0+346", + "features": { + "salt": 2 + }, + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝148", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "عى", + "expectation": "yehbarree-ar.fina.baseline=1+297|ain-ar.init=0@-30,110+710", + "features": { + "salt": 2 + }, + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝149", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "عي", + "expectation": "twodotsverticalbelow-ar=1@449,-139+0|yehbarree-ar.fina.baseline=1+297|ain-ar.init=0@-30,110+710", + "features": { + "salt": 2 + }, + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝14", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "فى", + "expectation": "yehbarree-ar.fina.baseline=1+297|dotabove-ar=0@-67,483+0|fehDotless-ar.init.yeh=0@0,110+768", + "features": { + "salt": 2 + }, + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝150", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar.10=0+1117|ayah.150=1+0", - "RaqqSura.ttf": "endofayah-ar.10=0+1117|ayah.150=1+0" + "only": "RaqqSura.ttf", + "input": "في", + "expectation": "twodotsverticalbelow-ar=1@449,-139+0|yehbarree-ar.fina.baseline=1+297|dotabove-ar=0@-67,483+0|fehDotless-ar.init.yeh=0@0,110+768", + "features": { + "salt": 2 + }, + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝151", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "كي", + "expectation": "twodotsverticalbelow-ar=1@449,-139+0|yehbarree-ar.fina.baseline=1+297|kaf-ar.init=0@-21,110+744", + "features": { + "salt": 2 + }, + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝152", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "لي", + "expectation": "twodotsverticalbelow-ar=1@449,-139+0|yehbarree-ar.fina.baseline=1+297|lam-ar.init.hah1=0@0,-5+783", + "features": { + "salt": 2 + }, + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝153", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "علي", + "expectation": "twodotsverticalbelow-ar=1@311,-329+0|lam_alefMaksura-ar.fina=1+110|ain-ar.init=0+680", + "features": { + "salt": 2 + }, + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝154", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "مني", + "expectation": "twodotsverticalbelow-ar=1@311,-329+0|dotabove-ar=1@-10,297+0|behDotless_alefMaksura-ar.fina=1+110|meem-ar.init=0+425", + "features": { + "salt": 2 + }, + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝155", + "only": "RaqqSura.ttf", + "input": "۝٥", + "expectation": "endofayah-ar.10=0+1117|ayah.005=0+0", "direction": "ltr", - "expectation": { - "default": "endofayah-ar.05=0+400", - "RaqqSura.ttf": "endofayah-ar.05=0+400" + "features": { + "salt": 1 + }, + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝156", + "only": "RaqqSura.ttf", + "input": "۝٠", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝157", + "only": "RaqqSura.ttf", + "input": "۝١", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝158", + "only": "RaqqSura.ttf", + "input": "۝٢", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝159", + "only": "RaqqSura.ttf", + "input": "۝٣", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝15", + "only": "RaqqSura.ttf", + "input": "۝٤", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar.05=0+400", - "RaqqSura.ttf": "endofayah-ar.05=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝160", + "only": "RaqqSura.ttf", + "input": "۝٥", + "expectation": "endofayah-ar.05=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar.10=0+1117|ayah.160=1+0", - "RaqqSura.ttf": "endofayah-ar.10=0+1117|ayah.160=1+0" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝161", + "only": "RaqqSura.ttf", + "input": "۝٦", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝162", + "only": "RaqqSura.ttf", + "input": "۝٧", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝163", + "only": "RaqqSura.ttf", + "input": "۝٨", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝164", + "only": "RaqqSura.ttf", + "input": "۝٩", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝165", + "only": "RaqqSura.ttf", + "input": "۝١٠", + "expectation": "endofayah-ar.10=0+1117|ayah.010=1+0", "direction": "ltr", - "expectation": { - "default": "endofayah-ar.05=0+400", - "RaqqSura.ttf": "endofayah-ar.05=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝166", + "only": "RaqqSura.ttf", + "input": "۝١١", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝167", + "only": "RaqqSura.ttf", + "input": "۝١٢", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝168", + "only": "RaqqSura.ttf", + "input": "۝١٣", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝169", + "only": "RaqqSura.ttf", + "input": "۝١٤", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝16", + "only": "RaqqSura.ttf", + "input": "۝١٥", + "expectation": "endofayah-ar.05=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝170", + "only": "RaqqSura.ttf", + "input": "۝١٦", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar.10=0+1117|ayah.170=1+0", - "RaqqSura.ttf": "endofayah-ar.10=0+1117|ayah.170=1+0" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝171", + "only": "RaqqSura.ttf", + "input": "۝١٧", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝172", + "only": "RaqqSura.ttf", + "input": "۝١٨", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝173", + "only": "RaqqSura.ttf", + "input": "۝١٩", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝174", + "only": "RaqqSura.ttf", + "input": "۝٢٠", + "expectation": "endofayah-ar.10=0+1117|ayah.020=1+0", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝175", + "only": "RaqqSura.ttf", + "input": "۝٢١", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar.05=0+400", - "RaqqSura.ttf": "endofayah-ar.05=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝176", + "only": "RaqqSura.ttf", + "input": "۝٢٢", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝177", + "only": "RaqqSura.ttf", + "input": "۝٢٣", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝178", + "only": "RaqqSura.ttf", + "input": "۝٢٤", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝179", + "only": "RaqqSura.ttf", + "input": "۝٢٥", + "expectation": "endofayah-ar.05=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝17", + "only": "RaqqSura.ttf", + "input": "۝٢٦", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝180", + "only": "RaqqSura.ttf", + "input": "۝٢٧", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar.10=0+1117|ayah.180=1+0", - "RaqqSura.ttf": "endofayah-ar.10=0+1117|ayah.180=1+0" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝181", + "only": "RaqqSura.ttf", + "input": "۝٢٨", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝182", + "only": "RaqqSura.ttf", + "input": "۝٢٩", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝183", + "only": "RaqqSura.ttf", + "input": "۝٣٠", + "expectation": "endofayah-ar.10=0+1117|ayah.030=1+0", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝184", + "only": "RaqqSura.ttf", + "input": "۝٣١", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝185", + "only": "RaqqSura.ttf", + "input": "۝٣٢", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar.05=0+400", - "RaqqSura.ttf": "endofayah-ar.05=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝186", + "only": "RaqqSura.ttf", + "input": "۝٣٣", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝187", + "only": "RaqqSura.ttf", + "input": "۝٣٤", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝188", + "only": "RaqqSura.ttf", + "input": "۝٣٥", + "expectation": "endofayah-ar.05=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝189", + "only": "RaqqSura.ttf", + "input": "۝٣٦", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝18", + "only": "RaqqSura.ttf", + "input": "۝٣٧", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝190", + "only": "RaqqSura.ttf", + "input": "۝٣٨", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar.10=0+1117|ayah.190=1+0", - "RaqqSura.ttf": "endofayah-ar.10=0+1117|ayah.190=1+0" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝191", + "only": "RaqqSura.ttf", + "input": "۝٣٩", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝192", + "only": "RaqqSura.ttf", + "input": "۝٤٠", + "expectation": "endofayah-ar.10=0+1117|ayah.040=1+0", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝193", + "only": "RaqqSura.ttf", + "input": "۝٤١", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝194", + "only": "RaqqSura.ttf", + "input": "۝٤٢", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝195", + "only": "RaqqSura.ttf", + "input": "۝٤٣", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar.05=0+400", - "RaqqSura.ttf": "endofayah-ar.05=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝196", + "only": "RaqqSura.ttf", + "input": "۝٤٤", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝197", + "only": "RaqqSura.ttf", + "input": "۝٤٥", + "expectation": "endofayah-ar.05=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝198", + "only": "RaqqSura.ttf", + "input": "۝٤٦", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝199", + "only": "RaqqSura.ttf", + "input": "۝٤٧", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝19", + "only": "RaqqSura.ttf", + "input": "۝٤٨", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝200", + "only": "RaqqSura.ttf", + "input": "۝٤٩", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar.10=0+1117|ayah.200=1+0", - "RaqqSura.ttf": "endofayah-ar.10=0+1117|ayah.200=1+0" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝201", + "only": "RaqqSura.ttf", + "input": "۝٥٠", + "expectation": "endofayah-ar.10=0+1117|ayah.050=1+0", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝202", + "only": "RaqqSura.ttf", + "input": "۝٥١", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝203", + "only": "RaqqSura.ttf", + "input": "۝٥٢", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝204", + "only": "RaqqSura.ttf", + "input": "۝٥٣", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝205", + "only": "RaqqSura.ttf", + "input": "۝٥٤", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar.05=0+400", - "RaqqSura.ttf": "endofayah-ar.05=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝206", + "only": "RaqqSura.ttf", + "input": "۝٥٥", + "expectation": "endofayah-ar.05=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝207", + "only": "RaqqSura.ttf", + "input": "۝٥٦", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝208", + "only": "RaqqSura.ttf", + "input": "۝٥٧", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝209", + "only": "RaqqSura.ttf", + "input": "۝٥٨", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝20", + "only": "RaqqSura.ttf", + "input": "۝٥٩", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar.10=0+1117|ayah.020=1+0", - "RaqqSura.ttf": "endofayah-ar.10=0+1117|ayah.020=1+0" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝210", + "only": "RaqqSura.ttf", + "input": "۝٦٠", + "expectation": "endofayah-ar.10=0+1117|ayah.060=1+0", "direction": "ltr", - "expectation": { - "default": "endofayah-ar.10=0+1117|ayah.210=1+0", - "RaqqSura.ttf": "endofayah-ar.10=0+1117|ayah.210=1+0" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝211", + "only": "RaqqSura.ttf", + "input": "۝٦١", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝212", + "only": "RaqqSura.ttf", + "input": "۝٦٢", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝213", + "only": "RaqqSura.ttf", + "input": "۝٦٣", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝214", + "only": "RaqqSura.ttf", + "input": "۝٦٤", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝215", + "only": "RaqqSura.ttf", + "input": "۝٦٥", + "expectation": "endofayah-ar.05=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar.05=0+400", - "RaqqSura.ttf": "endofayah-ar.05=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝216", + "only": "RaqqSura.ttf", + "input": "۝٦٦", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝217", + "only": "RaqqSura.ttf", + "input": "۝٦٧", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝218", + "only": "RaqqSura.ttf", + "input": "۝٦٨", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝219", + "only": "RaqqSura.ttf", + "input": "۝٦٩", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝21", + "only": "RaqqSura.ttf", + "input": "۝٧٠", + "expectation": "endofayah-ar.10=0+1117|ayah.070=1+0", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝220", + "only": "RaqqSura.ttf", + "input": "۝٧١", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar.10=0+1117|ayah.220=1+0", - "RaqqSura.ttf": "endofayah-ar.10=0+1117|ayah.220=1+0" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝221", + "only": "RaqqSura.ttf", + "input": "۝٧٢", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝222", + "only": "RaqqSura.ttf", + "input": "۝٧٣", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝223", + "only": "RaqqSura.ttf", + "input": "۝٧٤", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝224", + "only": "RaqqSura.ttf", + "input": "۝٧٥", + "expectation": "endofayah-ar.05=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝225", + "only": "RaqqSura.ttf", + "input": "۝٧٦", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar.05=0+400", - "RaqqSura.ttf": "endofayah-ar.05=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝226", + "only": "RaqqSura.ttf", + "input": "۝٧٧", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝227", + "only": "RaqqSura.ttf", + "input": "۝٧٨", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝228", + "only": "RaqqSura.ttf", + "input": "۝٧٩", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝229", + "only": "RaqqSura.ttf", + "input": "۝٨٠", + "expectation": "endofayah-ar.10=0+1117|ayah.080=1+0", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝22", + "only": "RaqqSura.ttf", + "input": "۝٨١", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝230", + "only": "RaqqSura.ttf", + "input": "۝٨٢", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar.10=0+1117|ayah.230=1+0", - "RaqqSura.ttf": "endofayah-ar.10=0+1117|ayah.230=1+0" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝231", + "only": "RaqqSura.ttf", + "input": "۝٨٣", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝232", + "only": "RaqqSura.ttf", + "input": "۝٨٤", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝233", + "only": "RaqqSura.ttf", + "input": "۝٨٥", + "expectation": "endofayah-ar.05=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝234", + "only": "RaqqSura.ttf", + "input": "۝٨٦", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝235", + "only": "RaqqSura.ttf", + "input": "۝٨٧", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar.05=0+400", - "RaqqSura.ttf": "endofayah-ar.05=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝236", + "only": "RaqqSura.ttf", + "input": "۝٨٨", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝237", + "only": "RaqqSura.ttf", + "input": "۝٨٩", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝238", + "only": "RaqqSura.ttf", + "input": "۝٩٠", + "expectation": "endofayah-ar.10=0+1117|ayah.090=1+0", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝239", + "only": "RaqqSura.ttf", + "input": "۝٩١", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝23", + "only": "RaqqSura.ttf", + "input": "۝٩٢", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝240", + "only": "RaqqSura.ttf", + "input": "۝٩٣", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar.10=0+1117|ayah.240=1+0", - "RaqqSura.ttf": "endofayah-ar.10=0+1117|ayah.240=1+0" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝241", + "only": "RaqqSura.ttf", + "input": "۝٩٤", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝242", + "only": "RaqqSura.ttf", + "input": "۝٩٥", + "expectation": "endofayah-ar.05=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝243", + "only": "RaqqSura.ttf", + "input": "۝٩٦", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝244", + "only": "RaqqSura.ttf", + "input": "۝٩٧", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝245", + "only": "RaqqSura.ttf", + "input": "۝٩٨", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar.05=0+400", - "RaqqSura.ttf": "endofayah-ar.05=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝246", + "only": "RaqqSura.ttf", + "input": "۝٩٩", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝247", + "only": "RaqqSura.ttf", + "input": "۝١٠٠", + "expectation": "endofayah-ar.10=0+1117|ayah.100=1+0", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝248", + "only": "RaqqSura.ttf", + "input": "۝١٠١", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝249", + "only": "RaqqSura.ttf", + "input": "۝١٠٢", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝24", + "only": "RaqqSura.ttf", + "input": "۝١٠٣", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝250", + "only": "RaqqSura.ttf", + "input": "۝١٠٤", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar.10=0+1117|ayah.250=1+0", - "RaqqSura.ttf": "endofayah-ar.10=0+1117|ayah.250=1+0" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝251", + "only": "RaqqSura.ttf", + "input": "۝١٠٥", + "expectation": "endofayah-ar.05=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝252", + "only": "RaqqSura.ttf", + "input": "۝١٠٦", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝253", + "only": "RaqqSura.ttf", + "input": "۝١٠٧", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝254", + "only": "RaqqSura.ttf", + "input": "۝١٠٨", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝255", + "only": "RaqqSura.ttf", + "input": "۝١٠٩", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar.05=0+400", - "RaqqSura.ttf": "endofayah-ar.05=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝256", + "only": "RaqqSura.ttf", + "input": "۝١١٠", + "expectation": "endofayah-ar.10=0+1117|ayah.110=1+0", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝257", + "only": "RaqqSura.ttf", + "input": "۝١١١", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝258", + "only": "RaqqSura.ttf", + "input": "۝١١٢", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝259", + "only": "RaqqSura.ttf", + "input": "۝١١٣", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝25", + "only": "RaqqSura.ttf", + "input": "۝١١٤", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar.05=0+400", - "RaqqSura.ttf": "endofayah-ar.05=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝260", + "only": "RaqqSura.ttf", + "input": "۝١١٥", + "expectation": "endofayah-ar.05=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar.10=0+1117|ayah.260=1+0", - "RaqqSura.ttf": "endofayah-ar.10=0+1117|ayah.260=1+0" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝261", + "only": "RaqqSura.ttf", + "input": "۝١١٦", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝262", + "only": "RaqqSura.ttf", + "input": "۝١١٧", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝263", + "only": "RaqqSura.ttf", + "input": "۝١١٨", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝264", + "only": "RaqqSura.ttf", + "input": "۝١١٩", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝265", + "only": "RaqqSura.ttf", + "input": "۝١٢٠", + "expectation": "endofayah-ar.10=0+1117|ayah.120=1+0", "direction": "ltr", - "expectation": { - "default": "endofayah-ar.05=0+400", - "RaqqSura.ttf": "endofayah-ar.05=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝266", + "only": "RaqqSura.ttf", + "input": "۝١٢١", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝267", + "only": "RaqqSura.ttf", + "input": "۝١٢٢", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝268", + "only": "RaqqSura.ttf", + "input": "۝١٢٣", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝269", + "only": "RaqqSura.ttf", + "input": "۝١٢٤", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝26", + "only": "RaqqSura.ttf", + "input": "۝١٢٥", + "expectation": "endofayah-ar.05=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝270", + "only": "RaqqSura.ttf", + "input": "۝١٢٦", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar.10=0+1117|ayah.270=1+0", - "RaqqSura.ttf": "endofayah-ar.10=0+1117|ayah.270=1+0" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝271", + "only": "RaqqSura.ttf", + "input": "۝١٢٧", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝272", + "only": "RaqqSura.ttf", + "input": "۝١٢٨", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝273", + "only": "RaqqSura.ttf", + "input": "۝١٢٩", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝274", + "only": "RaqqSura.ttf", + "input": "۝١٣٠", + "expectation": "endofayah-ar.10=0+1117|ayah.130=1+0", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝275", + "only": "RaqqSura.ttf", + "input": "۝١٣١", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar.05=0+400", - "RaqqSura.ttf": "endofayah-ar.05=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝276", + "only": "RaqqSura.ttf", + "input": "۝١٣٢", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝277", + "only": "RaqqSura.ttf", + "input": "۝١٣٣", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝278", + "only": "RaqqSura.ttf", + "input": "۝١٣٤", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝279", + "only": "RaqqSura.ttf", + "input": "۝١٣٥", + "expectation": "endofayah-ar.05=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝27", + "only": "RaqqSura.ttf", + "input": "۝١٣٦", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝280", + "only": "RaqqSura.ttf", + "input": "۝١٣٧", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar.10=0+1117|ayah.280=1+0", - "RaqqSura.ttf": "endofayah-ar.10=0+1117|ayah.280=1+0" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝281", + "only": "RaqqSura.ttf", + "input": "۝١٣٨", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝282", + "only": "RaqqSura.ttf", + "input": "۝١٣٩", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝283", + "only": "RaqqSura.ttf", + "input": "۝١٤٠", + "expectation": "endofayah-ar.10=0+1117|ayah.140=1+0", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝284", + "only": "RaqqSura.ttf", + "input": "۝١٤١", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝285", + "only": "RaqqSura.ttf", + "input": "۝١٤٢", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar.05=0+400", - "RaqqSura.ttf": "endofayah-ar.05=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝286", + "only": "RaqqSura.ttf", + "input": "۝١٤٣", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝287", + "only": "RaqqSura.ttf", + "input": "۝١٤٤", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝288", + "only": "RaqqSura.ttf", + "input": "۝١٤٥", + "expectation": "endofayah-ar.05=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝289", + "only": "RaqqSura.ttf", + "input": "۝١٤٦", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝28", + "only": "RaqqSura.ttf", + "input": "۝١٤٧", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝290", + "only": "RaqqSura.ttf", + "input": "۝١٤٨", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝291", + "only": "RaqqSura.ttf", + "input": "۝١٤٩", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝292", + "only": "RaqqSura.ttf", + "input": "۝١٥٠", + "expectation": "endofayah-ar.10=0+1117|ayah.150=1+0", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝293", + "only": "RaqqSura.ttf", + "input": "۝١٥١", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝294", + "only": "RaqqSura.ttf", + "input": "۝١٥٢", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝295", + "only": "RaqqSura.ttf", + "input": "۝١٥٣", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar.05=0+400", - "RaqqSura.ttf": "endofayah-ar.05=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝296", + "only": "RaqqSura.ttf", + "input": "۝١٥٤", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝297", + "only": "RaqqSura.ttf", + "input": "۝١٥٥", + "expectation": "endofayah-ar.05=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝298", + "only": "RaqqSura.ttf", + "input": "۝١٥٦", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝299", + "only": "RaqqSura.ttf", + "input": "۝١٥٧", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝29", + "only": "RaqqSura.ttf", + "input": "۝١٥٨", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝300", + "only": "RaqqSura.ttf", + "input": "۝١٥٩", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝30", + "only": "RaqqSura.ttf", + "input": "۝١٦٠", + "expectation": "endofayah-ar.10=0+1117|ayah.160=1+0", "direction": "ltr", - "expectation": { - "default": "endofayah-ar.10=0+1117|ayah.030=1+0", - "RaqqSura.ttf": "endofayah-ar.10=0+1117|ayah.030=1+0" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝31", + "only": "RaqqSura.ttf", + "input": "۝١٦١", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝32", + "only": "RaqqSura.ttf", + "input": "۝١٦٢", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝33", + "only": "RaqqSura.ttf", + "input": "۝١٦٣", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝34", + "only": "RaqqSura.ttf", + "input": "۝١٦٤", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝35", + "only": "RaqqSura.ttf", + "input": "۝١٦٥", + "expectation": "endofayah-ar.05=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar.05=0+400", - "RaqqSura.ttf": "endofayah-ar.05=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝36", + "only": "RaqqSura.ttf", + "input": "۝١٦٦", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝37", + "only": "RaqqSura.ttf", + "input": "۝١٦٧", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝38", + "only": "RaqqSura.ttf", + "input": "۝١٦٨", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝39", + "only": "RaqqSura.ttf", + "input": "۝١٦٩", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝40", + "only": "RaqqSura.ttf", + "input": "۝١٧٠", + "expectation": "endofayah-ar.10=0+1117|ayah.170=1+0", "direction": "ltr", - "expectation": { - "default": "endofayah-ar.10=0+1117|ayah.040=1+0", - "RaqqSura.ttf": "endofayah-ar.10=0+1117|ayah.040=1+0" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝41", + "only": "RaqqSura.ttf", + "input": "۝١٧١", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝42", + "only": "RaqqSura.ttf", + "input": "۝١٧٢", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝43", + "only": "RaqqSura.ttf", + "input": "۝١٧٣", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝44", + "only": "RaqqSura.ttf", + "input": "۝١٧٤", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝45", + "only": "RaqqSura.ttf", + "input": "۝١٧٥", + "expectation": "endofayah-ar.05=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar.05=0+400", - "RaqqSura.ttf": "endofayah-ar.05=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝46", + "only": "RaqqSura.ttf", + "input": "۝١٧٦", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝47", + "only": "RaqqSura.ttf", + "input": "۝١٧٧", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝48", + "only": "RaqqSura.ttf", + "input": "۝١٧٨", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝49", + "only": "RaqqSura.ttf", + "input": "۝١٧٩", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝50", + "only": "RaqqSura.ttf", + "input": "۝١٨٠", + "expectation": "endofayah-ar.10=0+1117|ayah.180=1+0", "direction": "ltr", - "expectation": { - "default": "endofayah-ar.10=0+1117|ayah.050=1+0", - "RaqqSura.ttf": "endofayah-ar.10=0+1117|ayah.050=1+0" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝51", + "only": "RaqqSura.ttf", + "input": "۝١٨١", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝52", + "only": "RaqqSura.ttf", + "input": "۝١٨٢", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝53", + "only": "RaqqSura.ttf", + "input": "۝١٨٣", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝54", + "only": "RaqqSura.ttf", + "input": "۝١٨٤", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝55", + "only": "RaqqSura.ttf", + "input": "۝١٨٥", + "expectation": "endofayah-ar.05=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar.05=0+400", - "RaqqSura.ttf": "endofayah-ar.05=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝56", + "only": "RaqqSura.ttf", + "input": "۝١٨٦", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝57", + "only": "RaqqSura.ttf", + "input": "۝١٨٧", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝58", + "only": "RaqqSura.ttf", + "input": "۝١٨٨", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝59", + "only": "RaqqSura.ttf", + "input": "۝١٨٩", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝60", + "only": "RaqqSura.ttf", + "input": "۝١٩٠", + "expectation": "endofayah-ar.10=0+1117|ayah.190=1+0", "direction": "ltr", - "expectation": { - "default": "endofayah-ar.10=0+1117|ayah.060=1+0", - "RaqqSura.ttf": "endofayah-ar.10=0+1117|ayah.060=1+0" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝61", + "only": "RaqqSura.ttf", + "input": "۝١٩١", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝62", + "only": "RaqqSura.ttf", + "input": "۝١٩٢", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝63", + "only": "RaqqSura.ttf", + "input": "۝١٩٣", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝64", + "only": "RaqqSura.ttf", + "input": "۝١٩٤", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝65", + "only": "RaqqSura.ttf", + "input": "۝١٩٥", + "expectation": "endofayah-ar.05=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar.05=0+400", - "RaqqSura.ttf": "endofayah-ar.05=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝66", + "only": "RaqqSura.ttf", + "input": "۝١٩٦", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝67", + "only": "RaqqSura.ttf", + "input": "۝١٩٧", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝68", + "only": "RaqqSura.ttf", + "input": "۝١٩٨", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝69", + "only": "RaqqSura.ttf", + "input": "۝١٩٩", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝70", + "only": "RaqqSura.ttf", + "input": "۝٢٠٠", + "expectation": "endofayah-ar.10=0+1117|ayah.200=1+0", "direction": "ltr", - "expectation": { - "default": "endofayah-ar.10=0+1117|ayah.070=1+0", - "RaqqSura.ttf": "endofayah-ar.10=0+1117|ayah.070=1+0" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝71", + "only": "RaqqSura.ttf", + "input": "۝٢٠١", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝72", + "only": "RaqqSura.ttf", + "input": "۝٢٠٢", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝73", + "only": "RaqqSura.ttf", + "input": "۝٢٠٣", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝74", + "only": "RaqqSura.ttf", + "input": "۝٢٠٤", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝75", + "only": "RaqqSura.ttf", + "input": "۝٢٠٥", + "expectation": "endofayah-ar.05=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar.05=0+400", - "RaqqSura.ttf": "endofayah-ar.05=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝76", + "only": "RaqqSura.ttf", + "input": "۝٢٠٦", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝77", + "only": "RaqqSura.ttf", + "input": "۝٢٠٧", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝78", + "only": "RaqqSura.ttf", + "input": "۝٢٠٨", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝79", + "only": "RaqqSura.ttf", + "input": "۝٢٠٩", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝80", + "only": "RaqqSura.ttf", + "input": "۝٢١٠", + "expectation": "endofayah-ar.10=0+1117|ayah.210=1+0", "direction": "ltr", - "expectation": { - "default": "endofayah-ar.10=0+1117|ayah.080=1+0", - "RaqqSura.ttf": "endofayah-ar.10=0+1117|ayah.080=1+0" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝81", + "only": "RaqqSura.ttf", + "input": "۝٢١١", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝82", + "only": "RaqqSura.ttf", + "input": "۝٢١٢", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝83", + "only": "RaqqSura.ttf", + "input": "۝٢١٣", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝84", + "only": "RaqqSura.ttf", + "input": "۝٢١٤", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝85", + "only": "RaqqSura.ttf", + "input": "۝٢١٥", + "expectation": "endofayah-ar.05=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar.05=0+400", - "RaqqSura.ttf": "endofayah-ar.05=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝86", + "only": "RaqqSura.ttf", + "input": "۝٢١٦", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝87", + "only": "RaqqSura.ttf", + "input": "۝٢١٧", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝88", + "only": "RaqqSura.ttf", + "input": "۝٢١٨", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝89", + "only": "RaqqSura.ttf", + "input": "۝٢١٩", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝90", + "only": "RaqqSura.ttf", + "input": "۝٢٢٠", + "expectation": "endofayah-ar.10=0+1117|ayah.220=1+0", "direction": "ltr", - "expectation": { - "default": "endofayah-ar.10=0+1117|ayah.090=1+0", - "RaqqSura.ttf": "endofayah-ar.10=0+1117|ayah.090=1+0" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝91", + "only": "RaqqSura.ttf", + "input": "۝٢٢١", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝92", + "only": "RaqqSura.ttf", + "input": "۝٢٢٢", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝93", + "only": "RaqqSura.ttf", + "input": "۝٢٢٣", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝94", + "only": "RaqqSura.ttf", + "input": "۝٢٢٤", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝95", + "only": "RaqqSura.ttf", + "input": "۝٢٢٥", + "expectation": "endofayah-ar.05=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar.05=0+400", - "RaqqSura.ttf": "endofayah-ar.05=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝96", + "only": "RaqqSura.ttf", + "input": "۝٢٢٦", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝97", + "only": "RaqqSura.ttf", + "input": "۝٢٢٧", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝98", + "only": "RaqqSura.ttf", + "input": "۝٢٢٨", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝99", + "only": "RaqqSura.ttf", + "input": "۝٢٢٩", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "أَ", - "expectation": { - "default": "fatha-ar=0@72,547+0|alef-ar=0+658", - "RaqqSura.ttf": "fatha-ar=0@73,547+0|alef-ar=0+642" + "only": "RaqqSura.ttf", + "input": "۝٢٣٠", + "expectation": "endofayah-ar.10=0+1117|ayah.230=1+0", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "أُ", - "expectation": { - "default": "damma-ar=0@-138,-15+0|alef-ar=0+658", - "RaqqSura.ttf": "damma-ar=0@-137,-15+0|alef-ar=0+642" + "only": "RaqqSura.ttf", + "input": "۝٢٣١", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "ؤَ", - "expectation": { - "default": "fatha-ar=0@206,384+0|waw-ar=0+509", - "RaqqSura.ttf": "fatha-ar=0@213,366+0|waw-ar=0+516" + "only": "RaqqSura.ttf", + "input": "۝٢٣٢", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "ؤُ", - "expectation": { - "default": "damma-ar=0@-117,-21+0|waw-ar=0+509", - "RaqqSura.ttf": "damma-ar=0@-110,-21+0|waw-ar=0+516" + "only": "RaqqSura.ttf", + "input": "۝٢٣٣", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "ؤِ", - "expectation": { - "default": "kasra-ar=0@184,-179+0|waw-ar=0+509", - "RaqqSura.ttf": "kasra-ar=0@191,-179+0|waw-ar=0+516" + "only": "RaqqSura.ttf", + "input": "۝٢٣٤", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "إِ", - "expectation": { - "default": "kasra-ar=0@297,-177+0|alef-ar=0+658", - "RaqqSura.ttf": "kasra-ar=0@298,-177+0|alef-ar=0+642" + "only": "RaqqSura.ttf", + "input": "۝٢٣٥", + "expectation": "endofayah-ar.05=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "ئم", - "expectation": { - "default": "meem-ar.fina=1+567|fatha-ar=0@-43,341+0|behDotless-ar.init=0@-30,0+100", - "RaqqSura.ttf": "meem-ar.fina=1+567|fatha-ar=0@-32,339+0|behDotless-ar.init=0+100" + "only": "RaqqSura.ttf", + "input": "۝٢٣٦", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "ئُ", - "expectation": { - "default": "damma-ar=0@-152,-75+0|alefMaksura-ar=0+395", - "RaqqSura.ttf": "damma-ar=0@-152,-75+0|alefMaksura-ar=0+393" + "only": "RaqqSura.ttf", + "input": "۝٢٣٧", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "ئِ", - "expectation": { - "default": "kasra-ar=0@155,-321+0|alefMaksura-ar=0+395", - "RaqqSura.ttf": "kasra-ar=0@155,-289+0|alefMaksura-ar=0+393" + "only": "RaqqSura.ttf", + "input": "۝٢٣٨", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "اء", - "expectation": { - "default": "madda-ar=1@-138,551+0|alef-ar=0+658", - "RaqqSura.ttf": "madda-ar=1@-137,551+0|alef-ar=0+642" + "only": "RaqqSura.ttf", + "input": "۝٢٣٩", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "اَ", - "expectation": { - "default": "fatha-ar=0@72,547+0|alef-ar=0+658", - "RaqqSura.ttf": "fatha-ar=0@73,547+0|alef-ar=0+642" + "only": "RaqqSura.ttf", + "input": "۝٢٤٠", + "expectation": "endofayah-ar.10=0+1117|ayah.240=1+0", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "اُ", - "expectation": { - "default": "damma-ar=0@-138,-15+0|alef-ar=0+658", - "RaqqSura.ttf": "damma-ar=0@-137,-15+0|alef-ar=0+642" + "only": "RaqqSura.ttf", + "input": "۝٢٤١", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "با", - "expectation": { - "default": "alef-ar.fina=1+101|dotbelow-ar=0@72,-46+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", - "RaqqSura.ttf": "alef-ar.fina=1+90|dotbelow-ar=0@72,-46+0|behDotless-ar.init=0+100" + "only": "RaqqSura.ttf", + "input": "۝٢٤٢", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "بب", - "expectation": { - "default": "dotbelow-ar=1@834,-111+0|behDotless-ar.fina=1+984|dotbelow-ar=0@81,-46+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", - "RaqqSura.ttf": "dotbelow-ar=1@834,-111+0|behDotless-ar.fina=1+984|dotbelow-ar=0@51,-46+0|behDotless-ar.init.high=0+100" + "only": "RaqqSura.ttf", + "input": "۝٢٤٣", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "بح", - "expectation": { - "default": "hah-ar.fina.alt=1+407|dotbelow-ar=0@167,180+0|behDotless-ar.init.hah=0@63,0+572", - "RaqqSura.ttf": "hah-ar.fina.alt=1+407|dotbelow-ar=0@167,180+0|behDotless-ar.init.hah=0@63,0+572" + "only": "RaqqSura.ttf", + "input": "۝٢٤٤", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "بش", - "expectation": { - "default": "threedotshorizontalabove-ar.5=1@-5,125+0|seen-ar.fina.low=1+487|dotbelow-ar=0@72,-46+0|_c.seen.beh=0+0|behDotless-ar.init.med=0+130", - "RaqqSura.ttf": "threedotshorizontalabove-ar.4=1@2,229+0|seen-ar.fina=1+484|dotbelow-ar=0@51,-46+0|behDotless-ar.init.high=0+100" + "only": "RaqqSura.ttf", + "input": "۝٢٤٥", + "expectation": "endofayah-ar.05=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "بع", - "expectation": { - "default": "ain-ar.fina=1+267|dotbelow-ar=0@81,-46+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", - "RaqqSura.ttf": "ain-ar.fina=1+262|dotbelow-ar=0@51,-46+0|behDotless-ar.init.high=0+100" + "only": "RaqqSura.ttf", + "input": "۝٢٤٦", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "بل", - "expectation": { - "default": "lam-ar.fina=1+177|dotbelow-ar=0@72,-46+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", - "RaqqSura.ttf": "lam-ar.fina=1+177|dotbelow-ar=0@72,-46+0|behDotless-ar.init=0+100" + "only": "RaqqSura.ttf", + "input": "۝٢٤٧", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "به", - "expectation": { - "default": "heh-ar.fina=1+339|dotbelow-ar=0@81,-46+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", - "RaqqSura.ttf": "heh-ar.fina=1+336|dotbelow-ar=0@51,-46+0|behDotless-ar.init.high=0+100" + "only": "RaqqSura.ttf", + "input": "۝٢٤٨", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "بي", - "expectation": { - "default": "twodotsverticalbelow-ar=1@386,-339+0|alefMaksura-ar.fina.wide=1+267|dotbelow-ar=0@72,-46+0|behDotless-ar.init=0+130", - "RaqqSura.ttf": "twodotsverticalbelow-ar=1@386,-339+0|alefMaksura-ar.fina.wide=1+267|dotbelow-ar=0@72,-46+0|behDotless-ar.init=0+100" + "only": "RaqqSura.ttf", + "input": "۝٢٤٩", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "تا", - "expectation": { - "default": "alef-ar.fina=1+101|twodotsverticalabove-ar.vert=0@4,320+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", - "RaqqSura.ttf": "alef-ar.fina=1+90|twodotsverticalabove-ar.vert=0@-18,318+0|behDotless-ar.init=0+100" + "only": "RaqqSura.ttf", + "input": "۝٢٥٠", + "expectation": "endofayah-ar.10=0+1117|ayah.250=1+0", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "ثا", - "expectation": { - "default": "alef-ar.fina=1+101|threedotsupabove-ar.vert=0@12,326+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", - "RaqqSura.ttf": "alef-ar.fina=1+90|threedotsupabove-ar.vert=0@-10,324+0|behDotless-ar.init=0+100" + "only": "RaqqSura.ttf", + "input": "۝٢٥١", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "جج", - "expectation": { - "default": "dotbelow-ar=1@571,-122+0|hah-ar.fina=1+417|dotbelow-ar=0@400,-24+0|hah-ar.init.hah=0@0,115+579", - "RaqqSura.ttf": "dotbelow-ar=1@571,-122+0|hah-ar.fina=1+417|dotbelow-ar=0@400,-24+0|hah-ar.init.hah=0@0,115+579" + "only": "RaqqSura.ttf", + "input": "۝٢٥٢", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "جح", - "expectation": { - "default": "hah-ar.fina=1+417|dotbelow-ar=0@400,-24+0|hah-ar.init.hah=0@0,115+579", - "RaqqSura.ttf": "hah-ar.fina=1+417|dotbelow-ar=0@400,-24+0|hah-ar.init.hah=0@0,115+579" + "only": "RaqqSura.ttf", + "input": "۝٢٥٣", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "حا", - "expectation": { - "default": "alef-ar.fina=1+101|_c.hah.beh=0+7|hah-ar.init=0+703", - "RaqqSura.ttf": "alef-ar.fina=1+90|hah-ar.init=0+703" + "only": "RaqqSura.ttf", + "input": "۝٢٥٤", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "حب", - "expectation": { - "default": "dotbelow-ar=1@834,-111+0|behDotless-ar.fina=1+984|_c.hah.beh=0+7|hah-ar.init=0+703", - "RaqqSura.ttf": "dotbelow-ar=1@834,-111+0|behDotless-ar.fina=1+984|hah-ar.init=0+703" + "only": "RaqqSura.ttf", + "input": "۝٢٥٥", + "expectation": "endofayah-ar.05=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "حح", - "expectation": { - "default": "hah-ar.fina=1+417|hah-ar.init.hah=0@0,115+579", - "RaqqSura.ttf": "hah-ar.fina=1+417|hah-ar.init.hah=0@0,115+579" + "only": "RaqqSura.ttf", + "input": "۝٢٥٦", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "حد", - "expectation": { - "default": "dal-ar.fina=1+875|_c.hah.dal=0+71|hah-ar.init=0@-71,0+632", - "RaqqSura.ttf": "dal-ar.fina=1+875|hah-ar.init=0+703" + "only": "RaqqSura.ttf", + "input": "۝٢٥٧", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "حر", - "expectation": { - "default": "reh-ar.fina=1+393|_c.hah.reh=0@-9,0+102|hah-ar.init=0@-131,0+572", - "RaqqSura.ttf": "reh-ar.fina=1+387|hah-ar.init=0+703" + "only": "RaqqSura.ttf", + "input": "۝٢٥٨", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "حس", - "expectation": { - "default": "seen-ar.fina.low=1+487|_c.hah.beh=0+7|hah-ar.init=0+703", - "RaqqSura.ttf": "seen-ar.fina.low=1+470|hah-ar.init=0+703" + "only": "RaqqSura.ttf", + "input": "۝٢٥٩", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "حض", - "expectation": { - "default": "dotabove-ar=1@398,247+0|sad-ar.fina=1+876|_c.hah.dal=0+71|hah-ar.init=0@-71,0+632", - "RaqqSura.ttf": "dotabove-ar=1@398,247+0|sad-ar.fina=1+876|hah-ar.init=0+703" + "only": "RaqqSura.ttf", + "input": "۝٢٦٠", + "expectation": "endofayah-ar.10=0+1117|ayah.260=1+0", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "حط", - "expectation": { - "default": "tah-ar.fina=1+798|_c.hah.dal=0+71|hah-ar.init=0@-71,0+632", - "RaqqSura.ttf": "tah-ar.fina=1+798|hah-ar.init=0+703" + "only": "RaqqSura.ttf", + "input": "۝٢٦١", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "حع", - "expectation": { - "default": "ain-ar.fina=1+267|_c.hah.beh=0+7|hah-ar.init=0+703", - "RaqqSura.ttf": "ain-ar.fina=1+262|hah-ar.init=0+703" + "only": "RaqqSura.ttf", + "input": "۝٢٦٢", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "حف", - "expectation": { - "default": "dotabove-ar=1@609,319+0|fehDotless-ar.fina=1+997|_c.hah.beh=0@3,0+10|hah-ar.init=0+703", - "RaqqSura.ttf": "dotabove-ar=1@609,319+0|fehDotless-ar.fina=1+997|hah-ar.init=0+703" + "only": "RaqqSura.ttf", + "input": "۝٢٦٣", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "حق", - "expectation": { - "default": "twodotsverticalabove-ar=1@-62,265+0|qafDotless-ar.fina=1+373|_c.ain.meem=0@8,0+43|hah-ar.init=0@-39,0+664", - "RaqqSura.ttf": "twodotsverticalabove-ar=1@-62,265+0|qafDotless-ar.fina=1+373|hah-ar.init=0+703" + "only": "RaqqSura.ttf", + "input": "۝٢٦٤", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "حك", - "expectation": { - "default": "kaf-ar.fina=1+889|_c.hah.dal=0+71|hah-ar.init=0@-71,0+632", - "RaqqSura.ttf": "kaf-ar.fina=1+889|hah-ar.init=0+703" + "only": "RaqqSura.ttf", + "input": "۝٢٦٥", + "expectation": "endofayah-ar.05=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "حل", - "expectation": { - "default": "lam-ar.fina=1+177|_c.hah.beh=0+7|hah-ar.init=0+703", - "RaqqSura.ttf": "lam-ar.fina=1+177|hah-ar.init=0+703" + "only": "RaqqSura.ttf", + "input": "۝٢٦٦", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "حم", - "expectation": { - "default": "meem-ar.fina=1+567|_c.ain.meem=0+35|hah-ar.init=0@-39,0+664", - "RaqqSura.ttf": "meem-ar.fina=1+567|hah-ar.init=0+703" + "only": "RaqqSura.ttf", + "input": "۝٢٦٧", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "حن", - "expectation": { - "default": "dotabove-ar=1@-3,101+0|noonghunna-ar.fina=1+250|_c.hah.noon=0+-20|hah-ar.init=0@-20,0+683", - "RaqqSura.ttf": "dotabove-ar=1@-3,90+0|noonghunna-ar.fina=1+250|hah-ar.init=0+703" + "only": "RaqqSura.ttf", + "input": "۝٢٦٨", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "حه", - "expectation": { - "default": "heh-ar.fina=1+339|_c.hah.beh=0+7|hah-ar.init=0+703", - "RaqqSura.ttf": "heh-ar.fina=1+336|hah-ar.init=0+703" + "only": "RaqqSura.ttf", + "input": "۝٢٦٩", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "حو", - "expectation": { - "default": "waw-ar.fina.round=1+492|_c.ain.meem=0@-7,0+28|hah-ar.init=0@-39,0+664", - "RaqqSura.ttf": "waw-ar.fina=1+477|hah-ar.init=0+703" + "only": "RaqqSura.ttf", + "input": "۝٢٧٠", + "expectation": "endofayah-ar.10=0+1117|ayah.270=1+0", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "حى", - "expectation": { - "default": "alefMaksura-ar.fina=1+282|_c.ain.yeh=0@-20,0+-5|hah-ar.init=0@-40,0+663", - "RaqqSura.ttf": "alefMaksura-ar.fina=1+282|hah-ar.init=0+703" + "only": "RaqqSura.ttf", + "input": "۝٢٧١", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "حے", - "expectation": { - "default": "yehbarree-ar.fina.baseline=1+297|_c.ain.yeh=0@-5,110+10|hah-ar.init=0@-40,110+713", - "RaqqSura.ttf": "yehbarree-ar.fina.baseline=1+297|hah-ar.init=0@0,110+763" + "only": "RaqqSura.ttf", + "input": "۝٢٧٢", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "دَ", - "expectation": { - "default": "fatha-ar=0@206,280+0|dal-ar=0+882", - "RaqqSura.ttf": "fatha-ar=0@200,280+0|dal-ar=0+876" + "only": "RaqqSura.ttf", + "input": "۝٢٧٣", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "سا", - "expectation": { - "default": "alef-ar.fina=1+101|_c.seen.beh=0+0|seen-ar.init=0+378", - "RaqqSura.ttf": "alef-ar.fina=1+90|seen-ar.init=0+345" + "only": "RaqqSura.ttf", + "input": "۝٢٧٤", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "سب", - "expectation": { - "default": "dotbelow-ar=1@834,-111+0|behDotless-ar.fina=1+984|_c.seen.beh=0+0|seen-ar.init=0+378", - "RaqqSura.ttf": "dotbelow-ar=1@834,-111+0|behDotless-ar.fina=1+984|seen-ar.init=0+345" + "only": "RaqqSura.ttf", + "input": "۝٢٧٥", + "expectation": "endofayah-ar.05=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "سح", - "expectation": { - "default": "hah-ar.fina=1+417|seen-ar.init=0@0,115+468", - "RaqqSura.ttf": "hah-ar.fina=1+417|seen-ar.init=0@0,115+465" + "only": "RaqqSura.ttf", + "input": "۝٢٧٦", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "سد", - "expectation": { - "default": "dal-ar.fina=1+875|seen-ar.init=0@-15,0+363", - "RaqqSura.ttf": "dal-ar.fina=1+875|seen-ar.init=0@-15,0+330" + "only": "RaqqSura.ttf", + "input": "۝٢٧٧", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "سر", - "expectation": { - "default": "reh-ar.fina=1+393|seen-ar.init=0+378", - "RaqqSura.ttf": "reh-ar.fina=1+387|seen-ar.init=0+345" + "only": "RaqqSura.ttf", + "input": "۝٢٧٨", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "سس", - "expectation": { - "default": "seen-ar.fina=1+510|_c.seen.beh=0+0|seen-ar.init=0+378", - "RaqqSura.ttf": "seen-ar.fina=1+484|seen-ar.init=0+345" + "only": "RaqqSura.ttf", + "input": "۝٢٧٩", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "سض", - "expectation": { - "default": "dotabove-ar=1@398,247+0|sad-ar.fina=1+876|seen-ar.init=0@-15,0+363", - "RaqqSura.ttf": "dotabove-ar=1@398,247+0|sad-ar.fina=1+876|seen-ar.init=0@-15,0+330" + "only": "RaqqSura.ttf", + "input": "۝٢٨٠", + "expectation": "endofayah-ar.10=0+1117|ayah.280=1+0", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "سط", - "expectation": { - "default": "tah-ar.fina=1+798|seen-ar.init=0@-15,0+363", - "RaqqSura.ttf": "tah-ar.fina=1+798|seen-ar.init=0@-15,0+330" + "only": "RaqqSura.ttf", + "input": "۝٢٨١", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "سع", - "expectation": { - "default": "ain-ar.fina=1+267|_c.seen.beh=0+0|seen-ar.init=0+378", - "RaqqSura.ttf": "ain-ar.fina=1+262|seen-ar.init=0+345" + "only": "RaqqSura.ttf", + "input": "۝٢٨٢", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "سف", - "expectation": { - "default": "dotabove-ar=1@609,319+0|fehDotless-ar.fina=1+997|_c.seen.beh=0+0|seen-ar.init=0+378", - "RaqqSura.ttf": "dotabove-ar=1@609,319+0|fehDotless-ar.fina=1+997|seen-ar.init=0+345" + "only": "RaqqSura.ttf", + "input": "۝٢٨٣", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "سق", - "expectation": { - "default": "twodotsverticalabove-ar=1@-62,265+0|qafDotless-ar.fina=1+373|_c.seen.meem=0@7,0+23|seen-ar.init=0@-36,0+342", - "RaqqSura.ttf": "twodotsverticalabove-ar=1@-62,265+0|qafDotless-ar.fina=1+373|seen-ar.init=0+345" + "only": "RaqqSura.ttf", + "input": "۝٢٨٤", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "سك", - "expectation": { - "default": "kaf-ar.fina=1+889|seen-ar.init=0@-15,0+363", - "RaqqSura.ttf": "kaf-ar.fina=1+889|seen-ar.init=0@-15,0+330" + "only": "RaqqSura.ttf", + "input": "۝٢٨٥", + "expectation": "endofayah-ar.05=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "سل", - "expectation": { - "default": "lam-ar.fina=1+177|_c.seen.beh=0+0|seen-ar.init=0+378", - "RaqqSura.ttf": "lam-ar.fina=1+177|seen-ar.init=0+345" + "only": "RaqqSura.ttf", + "input": "۝٢٨٦", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "سم", - "expectation": { - "default": "meem-ar.fina=1+567|_c.seen.meem=0+16|seen-ar.init=0@-36,0+342", - "RaqqSura.ttf": "meem-ar.fina=1+567|seen-ar.init=0+345" + "only": "RaqqSura.ttf", + "input": "۝٢٨٧", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "سن", - "expectation": { - "default": "dotabove-ar=1@-3,101+0|noonghunna-ar.fina=1+250|_c.hah.noon=0+-20|seen-ar.init=0+378", - "RaqqSura.ttf": "dotabove-ar=1@-3,90+0|noonghunna-ar.fina=1+250|seen-ar.init=0+345" + "only": "RaqqSura.ttf", + "input": "۝٢٨٨", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "سه", - "expectation": { - "default": "heh-ar.fina=1+339|_c.seen.beh=0+0|seen-ar.init=0+378", - "RaqqSura.ttf": "heh-ar.fina=1+336|seen-ar.init=0+345" + "only": "RaqqSura.ttf", + "input": "۝٢٨٩", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "سو", - "expectation": { - "default": "waw-ar.fina=1+472|seen-ar.init=0+378", - "RaqqSura.ttf": "waw-ar.fina=1+477|seen-ar.init=0+345" + "only": "RaqqSura.ttf", + "input": "۝٢٩٠", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "سى", - "expectation": { - "default": "seen_alefMaksura-ar=0+346", - "RaqqSura.ttf": "seen_alefMaksura-ar=0+346" + "only": "RaqqSura.ttf", + "input": "۝٢٩١", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "سي", - "expectation": { - "default": "twodotsverticalbelow-ar=0@330,-337+0|seen_alefMaksura-ar=0+346", - "RaqqSura.ttf": "twodotsverticalbelow-ar=0@330,-337+0|seen_alefMaksura-ar=0+346" + "only": "RaqqSura.ttf", + "input": "۝٢٩٢", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "سٍ", - "expectation": { - "default": "kasratan-ar.alt=0@268,-381+0|seen-ar=0+506", - "RaqqSura.ttf": "kasratan-ar.alt=0@258,-381+0|seen-ar=0+496" + "only": "RaqqSura.ttf", + "input": "۝٢٩٣", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "سِ", - "expectation": { - "default": "kasra-ar=0@268,-314+0|seen-ar=0+506", - "RaqqSura.ttf": "kasra-ar=0@258,-314+0|seen-ar=0+496" + "only": "RaqqSura.ttf", + "input": "۝٢٩٤", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "سے", - "expectation": { - "default": "yehbarree-ar.fina.baseline=1+297|seen-ar.init=0@-32,110+736", - "RaqqSura.ttf": "yehbarree-ar.fina.baseline=1+297|seen-ar.init=0@-32,110+733" + "only": "RaqqSura.ttf", + "input": "۝٢٩٥", + "expectation": "endofayah-ar.05=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "شي", - "expectation": { - "default": "twodotsverticalbelow-ar=0@330,-337+0|threedotshorizontalabove-ar.3=0@-35,167+0|seen_alefMaksura-ar=0+346", - "RaqqSura.ttf": "twodotsverticalbelow-ar=0@330,-337+0|threedotshorizontalabove-ar.3=0@-35,167+0|seen_alefMaksura-ar=0+346" + "only": "RaqqSura.ttf", + "input": "۝٢٩٦", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "صح", - "expectation": { - "default": "hah-ar.fina=1+417|sad-ar.init=0@0,115+765", - "RaqqSura.ttf": "hah-ar.fina=1+417|sad-ar.init=0@0,115+765" + "only": "RaqqSura.ttf", + "input": "۝٢٩٧", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "صٍ", - "expectation": { - "default": "kasratan-ar=0@354,-129+0|sad-ar=0+883", - "RaqqSura.ttf": "kasratan-ar=0@354,-129+0|sad-ar=0+883" + "only": "RaqqSura.ttf", + "input": "۝٢٩٨", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "صِ", - "expectation": { - "default": "kasra-ar=0@421,-129+0|sad-ar=0+883", - "RaqqSura.ttf": "kasra-ar=0@421,-129+0|sad-ar=0+883" + "only": "RaqqSura.ttf", + "input": "۝٢٩٩", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "صے", - "expectation": { - "default": "yehbarree-ar.fina.baseline=1+297|sad-ar.init=0@0,110+765", - "RaqqSura.ttf": "yehbarree-ar.fina.baseline=1+297|sad-ar.init=0@0,110+765" + "only": "RaqqSura.ttf", + "input": "۝٣٠٠", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "طح", - "expectation": { - "default": "hah-ar.fina=1+417|tah-ar.init.hah1=0+765", - "RaqqSura.ttf": "hah-ar.fina=1+417|tah-ar.init.hah1=0+765" + "only": "RaqqSura.ttf", + "input": "۝100", + "expectation": "endofayah-ar.10=0+1117|ayah.100=1+0", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "طً", - "expectation": { - "default": "fathatan-ar.alt=0@-75,483+0|tah-ar=0+805", - "RaqqSura.ttf": "fathatan-ar.alt=0@-75,483+0|tah-ar=0+805" + "only": "RaqqSura.ttf", + "input": "۝101", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "طَ", - "expectation": { - "default": "fatha-ar=0@-75,550+0|tah-ar=0+805", - "RaqqSura.ttf": "fatha-ar=0@-75,550+0|tah-ar=0+805" + "only": "RaqqSura.ttf", + "input": "۝102", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "طے", - "expectation": { - "default": "yehbarree-ar.fina.baseline=1+297|tah-ar.init.hah1=0@0,-5+765", - "RaqqSura.ttf": "yehbarree-ar.fina.baseline=1+297|tah-ar.init.hah1=0@0,-5+765" + "only": "RaqqSura.ttf", + "input": "۝103", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "عا", - "expectation": { - "default": "alef-ar.fina=1+101|_c.ain.init.beh=0+95|ain-ar.init=0@-50,0+640", - "RaqqSura.ttf": "alef-ar.fina=1+90|ain-ar.init=0+680" + "only": "RaqqSura.ttf", + "input": "۝104", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "عب", - "expectation": { - "default": "dotbelow-ar=1@834,-111+0|behDotless-ar.fina=1+984|_c.ain.init.beh=0+95|ain-ar.init=0@-50,0+640", - "RaqqSura.ttf": "dotbelow-ar=1@834,-111+0|behDotless-ar.fina=1+984|ain-ar.init=0+680" + "only": "RaqqSura.ttf", + "input": "۝105", + "expectation": "endofayah-ar.05=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "عح", - "expectation": { - "default": "hah-ar.fina=1+417|ain-ar.init.hah=0@0,115+603", - "RaqqSura.ttf": "hah-ar.fina=1+417|ain-ar.init.hah=0@0,115+616" + "only": "RaqqSura.ttf", + "input": "۝106", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "عد", - "expectation": { - "default": "dal-ar.fina=1+875|_c.ain.dal=0+47|ain-ar.init=0+690", - "RaqqSura.ttf": "dal-ar.fina=1+875|ain-ar.init=0+680" + "only": "RaqqSura.ttf", + "input": "۝107", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "عر", - "expectation": { - "default": "reh-ar.fina=1+393|_c.hah.reh=0@-9,0+102|ain-ar.init=0@-88,0+602", - "RaqqSura.ttf": "reh-ar.fina=1+387|ain-ar.init=0+680" + "only": "RaqqSura.ttf", + "input": "۝108", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "عس", - "expectation": { - "default": "seen-ar.fina=1+510|_c.ain.init.beh=0+95|ain-ar.init=0@-50,0+640", - "RaqqSura.ttf": "seen-ar.fina.low=1+470|ain-ar.init=0+680" + "only": "RaqqSura.ttf", + "input": "۝109", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "عض", - "expectation": { - "default": "dotabove-ar=1@398,247+0|sad-ar.fina=1+876|_c.ain.dal=0+47|ain-ar.init=0+690", - "RaqqSura.ttf": "dotabove-ar=1@398,247+0|sad-ar.fina=1+876|ain-ar.init=0+680" + "only": "RaqqSura.ttf", + "input": "۝10", + "expectation": "endofayah-ar.10=0+1117|ayah.010=1+0", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "عط", - "expectation": { - "default": "tah-ar.fina=1+798|_c.ain.dal=0+47|ain-ar.init=0+690", - "RaqqSura.ttf": "tah-ar.fina=1+798|ain-ar.init=0+680" + "only": "RaqqSura.ttf", + "input": "۝110", + "expectation": "endofayah-ar.10=0+1117|ayah.110=1+0", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "عع", - "expectation": { - "default": "ain-ar.fina=1+267|_c.ain.init.beh=0+95|ain-ar.init=0@-50,0+640", - "RaqqSura.ttf": "ain-ar.fina=1+262|ain-ar.init=0+680" + "only": "RaqqSura.ttf", + "input": "۝111", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "عف", - "expectation": { - "default": "dotabove-ar=1@609,319+0|fehDotless-ar.fina=1+997|_c.ain.init.beh=0@2,0+97|ain-ar.init=0@-50,0+640", - "RaqqSura.ttf": "dotabove-ar=1@609,319+0|fehDotless-ar.fina=1+997|ain-ar.init=0+680" + "only": "RaqqSura.ttf", + "input": "۝112", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "عق", - "expectation": { - "default": "twodotsverticalabove-ar=1@-62,265+0|qafDotless-ar.fina=1+373|_c.ain.meem=0@8,0+43|ain-ar.init=0+690", - "RaqqSura.ttf": "twodotsverticalabove-ar=1@-62,265+0|qafDotless-ar.fina=1+373|ain-ar.init=0+680" + "only": "RaqqSura.ttf", + "input": "۝113", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "عك", - "expectation": { - "default": "kaf-ar.fina=1+889|_c.ain.dal=0+47|ain-ar.init=0+690", - "RaqqSura.ttf": "kaf-ar.fina=1+889|ain-ar.init=0+680" + "only": "RaqqSura.ttf", + "input": "۝114", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "عل", - "expectation": { - "default": "lam-ar.fina=1+177|_c.ain.init.beh=0+95|ain-ar.init=0@-50,0+640", - "RaqqSura.ttf": "lam-ar.fina=1+177|ain-ar.init=0+680" + "only": "RaqqSura.ttf", + "input": "۝115", + "expectation": "endofayah-ar.05=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "عم", - "expectation": { - "default": "meem-ar.fina=1+567|_c.ain.meem=0+35|ain-ar.init=0+690", - "RaqqSura.ttf": "meem-ar.fina=1+567|ain-ar.init=0+680" + "only": "RaqqSura.ttf", + "input": "۝116", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "عن", - "expectation": { - "default": "dotabove-ar=1@-3,101+0|noonghunna-ar.fina=1+250|_c.hah.noon=0+-20|ain-ar.init=0+690", - "RaqqSura.ttf": "dotabove-ar=1@-3,90+0|noonghunna-ar.fina=1+250|ain-ar.init=0+680" + "only": "RaqqSura.ttf", + "input": "۝117", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "عه", - "expectation": { - "default": "heh-ar.fina=1+339|_c.ain.init.beh=0+95|ain-ar.init=0@-50,0+640", - "RaqqSura.ttf": "heh-ar.fina=1+336|ain-ar.init=0+680" + "only": "RaqqSura.ttf", + "input": "۝118", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "عو", - "expectation": { - "default": "waw-ar.fina.round=1+492|_c.ain.meem=0@-7,0+28|ain-ar.init=0+690", - "RaqqSura.ttf": "waw-ar.fina=1+477|ain-ar.init=0+680" + "only": "RaqqSura.ttf", + "input": "۝119", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "عى", - "expectation": { - "default": "alefMaksura-ar.fina=1+282|_c.ain.yeh=0@-20,0+-5|ain-ar.init=0+690", - "RaqqSura.ttf": "alefMaksura-ar.fina=1+282|ain-ar.init=0@-43,0+637" + "only": "RaqqSura.ttf", + "input": "۝11", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "عي", - "expectation": { - "default": "twodotsverticalbelow-ar=1@339,-334+0|alefMaksura-ar.fina=1+282|_c.ain.yeh=0@-20,0+-5|ain-ar.init=0+690", - "RaqqSura.ttf": "twodotsverticalbelow-ar=1@339,-334+0|alefMaksura-ar.fina=1+282|ain-ar.init=0@-43,0+637" + "only": "RaqqSura.ttf", + "input": "۝120", + "expectation": "endofayah-ar.10=0+1117|ayah.120=1+0", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "عے", - "expectation": { - "default": "yehbarree-ar.fina.baseline=1+297|_c.ain.yeh=0@-5,110+10|ain-ar.init=0@0,110+760", - "RaqqSura.ttf": "yehbarree-ar.fina.baseline=1+297|ain-ar.init=0@-30,110+710" + "only": "RaqqSura.ttf", + "input": "۝121", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "ـد", - "expectation": { - "default": "dal-ar.fina=1+875|kashida-ar=0+100", - "RaqqSura.ttf": "dal-ar.fina=1+875|kashida-ar=0+100" + "only": "RaqqSura.ttf", + "input": "۝122", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "فا", - "expectation": { - "default": "dotabove-ar=0@153,394+0|fehDotless_alef-ar=0+560", - "RaqqSura.ttf": "dotabove-ar=0@153,394+0|fehDotless_alef-ar=0+560" + "only": "RaqqSura.ttf", + "input": "۝123", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "فب", - "expectation": { - "default": "dotbelow-ar=1@834,-111+0|behDotless-ar.fina=1+984|dotabove-ar=0@-1,373+0|_c.feh.init.beh=0+174|fehDotless-ar.init=0@-114,0+220", - "RaqqSura.ttf": "dotbelow-ar=1@834,-111+0|behDotless-ar.fina=1+984|dotabove-ar=0@-61,373+0|fehDotless-ar.init=0+334" + "only": "RaqqSura.ttf", + "input": "۝124", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "فد", - "expectation": { - "default": "dal-ar.fina=1+875|dotabove-ar=0@-41,373+0|_c.feh.init.dal=0+137|fehDotless-ar.init=0@-117,0+217", - "RaqqSura.ttf": "dal-ar.fina=1+875|dotabove-ar=0@-61,373+0|fehDotless-ar.init=0+334" + "only": "RaqqSura.ttf", + "input": "۝125", + "expectation": "endofayah-ar.05=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "فر", - "expectation": { - "default": "reh-ar.fina=1+393|dotabove-ar=0@-56,373+0|fehDotless-ar.init.yeh=0@11,0+339", - "RaqqSura.ttf": "reh-ar.fina=1+387|dotabove-ar=0@-61,373+0|fehDotless-ar.init=0+334" + "only": "RaqqSura.ttf", + "input": "۝126", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "فس", - "expectation": { - "default": "seen-ar.fina=1+510|dotabove-ar=0@-1,373+0|_c.feh.init.beh=0+174|fehDotless-ar.init=0@-114,0+220", - "RaqqSura.ttf": "seen-ar.fina=1+484|dotabove-ar=0@-61,373+0|fehDotless-ar.init=0+334" + "only": "RaqqSura.ttf", + "input": "۝127", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "فص", - "expectation": { - "default": "sad-ar.fina=1+876|dotabove-ar=0@-41,373+0|_c.feh.init.dal=0+137|fehDotless-ar.init=0@-117,0+217", - "RaqqSura.ttf": "sad-ar.fina=1+876|dotabove-ar=0@-61,373+0|fehDotless-ar.init=0+334" + "only": "RaqqSura.ttf", + "input": "۝128", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "فط", - "expectation": { - "default": "tah-ar.fina=1+798|dotabove-ar=0@-41,373+0|_c.feh.init.dal=0+137|fehDotless-ar.init=0@-117,0+217", - "RaqqSura.ttf": "tah-ar.fina=1+798|dotabove-ar=0@-61,373+0|fehDotless-ar.init=0+334" + "only": "RaqqSura.ttf", + "input": "۝129", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "فع", - "expectation": { - "default": "ain-ar.fina=1+267|dotabove-ar=0@-1,373+0|_c.feh.init.beh=0+174|fehDotless-ar.init=0@-114,0+220", - "RaqqSura.ttf": "ain-ar.fina=1+262|dotabove-ar=0@-61,373+0|fehDotless-ar.init=0+334" + "only": "RaqqSura.ttf", + "input": "۝12", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "فف", - "expectation": { - "default": "dotabove-ar=1@609,319+0|fehDotless-ar.fina=1+997|dotabove-ar=0@-4,373+0|_c.feh.init.beh=0@-3,0+171|fehDotless-ar.init=0@-114,0+220", - "RaqqSura.ttf": "dotabove-ar=1@609,319+0|fehDotless-ar.fina=1+997|dotabove-ar=0@-61,373+0|fehDotless-ar.init=0+334" + "only": "RaqqSura.ttf", + "input": "۝130", + "expectation": "endofayah-ar.10=0+1117|ayah.130=1+0", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "فق", - "expectation": { - "default": "twodotsverticalabove-ar=1@-62,265+0|qafDotless-ar.fina=1+373|dotabove-ar=0@-32,373+0|_c.feh.init.dal=0@9,0+146|fehDotless-ar.init=0@-117,0+217", - "RaqqSura.ttf": "twodotsverticalabove-ar=1@-62,265+0|qafDotless-ar.fina=1+373|dotabove-ar=0@-61,373+0|fehDotless-ar.init=0+334" + "only": "RaqqSura.ttf", + "input": "۝131", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "فك", - "expectation": { - "default": "kaf-ar.fina=1+889|dotabove-ar=0@-41,373+0|_c.feh.init.dal=0+137|fehDotless-ar.init=0@-117,0+217", - "RaqqSura.ttf": "kaf-ar.fina=1+889|dotabove-ar=0@-61,373+0|fehDotless-ar.init=0+334" + "only": "RaqqSura.ttf", + "input": "۝132", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "فل", - "expectation": { - "default": "lam-ar.fina=1+177|dotabove-ar=0@-1,373+0|_c.feh.init.beh=0+174|fehDotless-ar.init=0@-114,0+220", - "RaqqSura.ttf": "lam-ar.fina=1+177|dotabove-ar=0@-61,373+0|fehDotless-ar.init=0+334" + "only": "RaqqSura.ttf", + "input": "۝133", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "فم", - "expectation": { - "default": "meem-ar.fina=1+567|dotabove-ar=0@-41,373+0|_c.feh.init.dal=0+137|fehDotless-ar.init=0@-117,0+217", - "RaqqSura.ttf": "meem-ar.fina=1+567|dotabove-ar=0@-61,373+0|fehDotless-ar.init=0+334" + "only": "RaqqSura.ttf", + "input": "۝134", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "فن", - "expectation": { - "default": "dotabove-ar=1@-3,101+0|noonghunna-ar.fina=1+250|dotabove-ar=0@-81,373+0|_c.hah.noon=0+-20|fehDotless-ar.init=0+334", - "RaqqSura.ttf": "dotabove-ar=1@-3,90+0|noonghunna-ar.fina=1+250|dotabove-ar=0@-61,373+0|fehDotless-ar.init=0+334" + "only": "RaqqSura.ttf", + "input": "۝135", + "expectation": "endofayah-ar.05=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "فه", - "expectation": { - "default": "heh-ar.fina=1+339|dotabove-ar=0@-1,373+0|_c.feh.init.beh=0+174|fehDotless-ar.init=0@-114,0+220", - "RaqqSura.ttf": "heh-ar.fina=1+336|dotabove-ar=0@-61,373+0|fehDotless-ar.init=0+334" + "only": "RaqqSura.ttf", + "input": "۝136", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "فو", - "expectation": { - "default": "waw-ar.fina=1+472|dotabove-ar=0@-19,373+0|_c.feh.init.dal=0@22,0+159|fehDotless-ar.init=0@-117,0+217", - "RaqqSura.ttf": "waw-ar.fina=1+477|dotabove-ar=0@-61,373+0|fehDotless-ar.init=0+334" + "only": "RaqqSura.ttf", + "input": "۝137", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "فى", - "expectation": { - "default": "alefMaksura-ar.fina.wide=1+267|dotabove-ar=0@-67,373+0|fehDotless-ar.init.yeh=0+328", - "RaqqSura.ttf": "alefMaksura-ar.fina.wide=1+267|dotabove-ar=0@-67,373+0|fehDotless-ar.init.yeh=0+328" + "only": "RaqqSura.ttf", + "input": "۝138", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "في", - "expectation": { - "default": "twodotsverticalbelow-ar=1@386,-339+0|alefMaksura-ar.fina.wide=1+267|dotabove-ar=0@-67,373+0|fehDotless-ar.init.yeh=0+328", - "RaqqSura.ttf": "twodotsverticalbelow-ar=1@386,-339+0|alefMaksura-ar.fina.wide=1+267|dotabove-ar=0@-67,373+0|fehDotless-ar.init.yeh=0+328" + "only": "RaqqSura.ttf", + "input": "۝139", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "فے", - "expectation": { - "default": "yehbarree-ar.fina.baseline=1+297|dotabove-ar=0@-67,483+0|fehDotless-ar.init.yeh=0@0,110+768", - "RaqqSura.ttf": "yehbarree-ar.fina.baseline=1+297|dotabove-ar=0@-67,483+0|fehDotless-ar.init.yeh=0@0,110+768" + "only": "RaqqSura.ttf", + "input": "۝13", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "قل", - "expectation": { - "default": "lam-ar.fina=1+177|twodotsverticalabove-ar=0@-31,381+0|_c.feh.init.beh=0+174|fehDotless-ar.init=0@-114,0+220", - "RaqqSura.ttf": "lam-ar.fina=1+177|twodotsverticalabove-ar=0@-91,381+0|fehDotless-ar.init=0+334" + "only": "RaqqSura.ttf", + "input": "۝140", + "expectation": "endofayah-ar.10=0+1117|ayah.140=1+0", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "كا", - "expectation": { - "default": "alef-ar.fina=1+101|kaf-ar.init.alt=0@-5,0+760", - "RaqqSura.ttf": "alef-ar.fina=1+90|kaf-ar.init=0@-5,0+760" + "only": "RaqqSura.ttf", + "input": "۝141", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "كد", - "expectation": { - "default": "dal-ar.fina=1+875|kaf-ar.init.alt=0@-10,0+755", - "RaqqSura.ttf": "dal-ar.fina=1+875|kaf-ar.init=0@-10,0+755" + "only": "RaqqSura.ttf", + "input": "۝142", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "كر", - "expectation": { - "default": "reh-ar.fina=1+393|kaf-ar.init.alt=0@-5,0+760", - "RaqqSura.ttf": "reh-ar.fina=1+387|kaf-ar.init=0@-5,0+760" + "only": "RaqqSura.ttf", + "input": "۝143", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "كم", - "expectation": { - "default": "meem-ar.fina=1+567|kaf-ar.init.alt=0@-12,0+753", - "RaqqSura.ttf": "meem-ar.fina=1+567|kaf-ar.init=0@-12,0+753" + "only": "RaqqSura.ttf", + "input": "۝144", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "كن", - "expectation": { - "default": "dotabove-ar=1@-3,101+0|noonghunna-ar.fina=1+250|kaf-ar.init.alt=0@-30,0+735", - "RaqqSura.ttf": "dotabove-ar=1@-3,90+0|noonghunna-ar.fina=1+250|kaf-ar.init=0@-30,0+735" + "only": "RaqqSura.ttf", + "input": "۝145", + "expectation": "endofayah-ar.05=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "كي", - "expectation": { - "default": "twodotsverticalbelow-ar=1@339,-334+0|alefMaksura-ar.fina=1+282|kaf-ar.init.alt=0@-36,0+729", - "RaqqSura.ttf": "twodotsverticalbelow-ar=1@339,-334+0|alefMaksura-ar.fina=1+282|kaf-ar.init=0@-36,0+729" + "only": "RaqqSura.ttf", + "input": "۝146", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "كً", - "expectation": { - "default": "fathatan-ar.alt=0@11,431+0|kaf-ar=0+896", - "RaqqSura.ttf": "fathatan-ar.alt=0@11,431+0|kaf-ar=0+896" + "only": "RaqqSura.ttf", + "input": "۝147", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "كَ", - "expectation": { - "default": "fatha-ar=0@11,498+0|kaf-ar=0+896", - "RaqqSura.ttf": "fatha-ar=0@11,498+0|kaf-ar=0+896" + "only": "RaqqSura.ttf", + "input": "۝148", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "كے", - "expectation": { - "default": "yehbarree-ar.fina.baseline=1+297|kaf-ar.init.alt=0@-21,110+744", - "RaqqSura.ttf": "yehbarree-ar.fina.baseline=1+297|kaf-ar.init=0@-21,110+744" + "only": "RaqqSura.ttf", + "input": "۝149", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "لآ", - "expectation": { - "default": "madda-ar=0@149,565+0|lam_alef-ar=0+542", - "RaqqSura.ttf": "madda-ar=0@149,565+0|lam_alef-ar=0+542" + "only": "RaqqSura.ttf", + "input": "۝14", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "لأ", - "expectation": { - "default": "fatha-ar=0@352,599+0|lam_alef-ar=0+542", - "RaqqSura.ttf": "fatha-ar=0@352,599+0|lam_alef-ar=0+542" + "only": "RaqqSura.ttf", + "input": "۝150", + "expectation": "endofayah-ar.10=0+1117|ayah.150=1+0", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "لح", - "expectation": { - "default": "hah-ar.fina.alt=1+407|lam-ar.init.hah1.alt=0@63,0+578", - "RaqqSura.ttf": "hah-ar.fina.alt=1+407|lam-ar.init.hah1.alt=0@63,0+578" + "only": "RaqqSura.ttf", + "input": "۝151", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "لم", - "expectation": { - "default": "meem-ar.fina=1+567|lam-ar.init=0@-30,0+93", - "RaqqSura.ttf": "meem-ar.fina=1+567|lam-ar.init=0+123" + "only": "RaqqSura.ttf", + "input": "۝152", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "لي", - "expectation": { - "default": "twodotsverticalbelow-ar=1@386,-339+0|alefMaksura-ar.fina.wide=1+267|lam-ar.init=0+123", - "RaqqSura.ttf": "twodotsverticalbelow-ar=1@386,-339+0|alefMaksura-ar.fina.wide=1+267|lam-ar.init=0+123" + "only": "RaqqSura.ttf", + "input": "۝153", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "لً", - "expectation": { - "default": "fathatan-ar.alt=0@-75,483+0|lam-ar=0+186", - "RaqqSura.ttf": "fathatan-ar.alt=0@-75,483+0|lam-ar=0+186" + "only": "RaqqSura.ttf", + "input": "۝154", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "لٍ", - "expectation": { - "default": "kasratan-ar.alt=0@171,-277+0|lam-ar=0+186", - "RaqqSura.ttf": "kasratan-ar.alt=0@171,-277+0|lam-ar=0+186" + "only": "RaqqSura.ttf", + "input": "۝155", + "expectation": "endofayah-ar.05=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "لَ", - "expectation": { - "default": "fatha-ar=0@-75,550+0|lam-ar=0+186", - "RaqqSura.ttf": "fatha-ar=0@-75,550+0|lam-ar=0+186" + "only": "RaqqSura.ttf", + "input": "۝156", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "لِ", - "expectation": { - "default": "kasra-ar=0@171,-210+0|lam-ar=0+186", - "RaqqSura.ttf": "kasra-ar=0@171,-210+0|lam-ar=0+186" + "only": "RaqqSura.ttf", + "input": "۝157", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "لے", - "expectation": { - "default": "yehbarree-ar.fina.baseline=1+297|lam-ar.init.hah1=0@0,-5+763", - "RaqqSura.ttf": "yehbarree-ar.fina.baseline=1+297|lam-ar.init.hah1=0@0,-5+783" + "only": "RaqqSura.ttf", + "input": "۝158", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "ما", - "expectation": { - "default": "alef-ar.fina=1+101|_c.seen.beh=0+0|meem-ar.init=0+425", - "RaqqSura.ttf": "alef-ar.fina=1+90|meem-ar.init=0+425" + "only": "RaqqSura.ttf", + "input": "۝159", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "مح", - "expectation": { - "default": "hah-ar.fina=1+417|meem-ar.init=0@0,115+425", - "RaqqSura.ttf": "hah-ar.fina=1+417|meem-ar.init=0@0,115+425" + "only": "RaqqSura.ttf", + "input": "۝15", + "expectation": "endofayah-ar.05=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "مر", - "expectation": { - "default": "reh-ar.fina=1+393|meem-ar.init.round=0@20,0+418", - "RaqqSura.ttf": "reh-ar.fina=1+387|meem-ar.init.round=0@20,0+418" + "only": "RaqqSura.ttf", + "input": "۝160", + "expectation": "endofayah-ar.10=0+1117|ayah.160=1+0", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "مم", - "expectation": { - "default": "meem-ar.fina.round=1+554|meem-ar.init.round=0+398", - "RaqqSura.ttf": "meem-ar.fina.round=1+554|meem-ar.init.round=0+398" + "only": "RaqqSura.ttf", + "input": "۝161", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "من", - "expectation": { - "default": "dotabove-ar=1@-3,101+0|noonghunna-ar.fina=1+250|meem-ar.init.round=0+398", - "RaqqSura.ttf": "dotabove-ar=1@-3,90+0|noonghunna-ar.fina=1+250|meem-ar.init.round=0+398" + "only": "RaqqSura.ttf", + "input": "۝162", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "مو", - "expectation": { - "default": "waw-ar.fina.round=1+492|meem-ar.init.round=0+398", - "RaqqSura.ttf": "waw-ar.fina.round=1+492|meem-ar.init.round=0+398" + "only": "RaqqSura.ttf", + "input": "۝163", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "مے", - "expectation": { - "default": "yehbarree-ar.fina.baseline=1+297|meem-ar.init=0@0,110+775", - "RaqqSura.ttf": "yehbarree-ar.fina.baseline=1+297|meem-ar.init=0@0,110+765" + "only": "RaqqSura.ttf", + "input": "۝164", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "نٍ", - "expectation": { - "default": "kasratan-ar.alt=0@268,-193+0|dotabove-ar=0@5,191+0|noonghunna-ar=0+295", - "RaqqSura.ttf": "kasratan-ar.alt=0@268,-193+0|dotabove-ar=0@5,191+0|noonghunna-ar=0+295" + "only": "RaqqSura.ttf", + "input": "۝165", + "expectation": "endofayah-ar.05=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "نِ", - "expectation": { - "default": "kasra-ar=0@268,-126+0|dotabove-ar=0@5,191+0|noonghunna-ar=0+295", - "RaqqSura.ttf": "kasra-ar=0@268,-126+0|dotabove-ar=0@5,191+0|noonghunna-ar=0+295" + "only": "RaqqSura.ttf", + "input": "۝166", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "هح", - "expectation": { - "default": "hah-ar.fina=1+417|heh-ar.init=0@0,115+461", - "RaqqSura.ttf": "hah-ar.fina=1+417|heh-ar.init=0@0,115+461" + "only": "RaqqSura.ttf", + "input": "۝167", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "هم", - "expectation": { - "default": "meem-ar.fina.round=1+554|heh-ar.init.round=0+327", - "RaqqSura.ttf": "meem-ar.fina.round=1+554|heh-ar.init.round=0+327" + "only": "RaqqSura.ttf", + "input": "۝168", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "هن", - "expectation": { - "default": "dotabove-ar=1@-3,101+0|noonghunna-ar.fina=1+250|heh-ar.init.round=0+327", - "RaqqSura.ttf": "dotabove-ar=1@-3,90+0|noonghunna-ar.fina=1+250|heh-ar.init.round=0+327" + "only": "RaqqSura.ttf", + "input": "۝169", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "هے", - "expectation": { - "default": "yehbarree-ar.fina.baseline=1+297|heh-ar.init=0@0,110+771", - "RaqqSura.ttf": "yehbarree-ar.fina.baseline=1+297|heh-ar.init=0@0,110+761" + "only": "RaqqSura.ttf", + "input": "۝16", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "وٕ", - "expectation": { - "default": "kasra-ar=0@184,-179+0|waw-ar=0+509", - "RaqqSura.ttf": "kasra-ar=0@191,-179+0|waw-ar=0+516" + "only": "RaqqSura.ttf", + "input": "۝170", + "expectation": "endofayah-ar.10=0+1117|ayah.170=1+0", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "ىٕ", - "expectation": { - "default": "kasra-ar=0@155,-321+0|alefMaksura-ar=0+395", - "RaqqSura.ttf": "kasra-ar=0@155,-289+0|alefMaksura-ar=0+393" + "only": "RaqqSura.ttf", + "input": "۝171", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "ىے", - "expectation": { - "default": "yehbarree-ar.fina.baseline=1+297|behDotless-ar.init=0@0,110+770", - "RaqqSura.ttf": "yehbarree-ar.fina.baseline=1+297|behDotless-ar.init=0@0,110+760" + "only": "RaqqSura.ttf", + "input": "۝172", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "◌ً", - "expectation": { - "default": "fathatan-ar=0@148,615+0|dottedCircle=0+578", - "RaqqSura.ttf": "fathatan-ar=0@148,615+0|dottedCircle=0+578" + "only": "RaqqSura.ttf", + "input": "۝173", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "◌ٌ", - "expectation": { - "default": "dammatan-ar=0@-175,148+0|dottedCircle=0+578", - "RaqqSura.ttf": "dammatan-ar=0@-175,148+0|dottedCircle=0+578" + "only": "RaqqSura.ttf", + "input": "۝174", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "◌ٍ", - "expectation": { - "default": "kasratan-ar=0@148,-190+0|dottedCircle=0+578", - "RaqqSura.ttf": "kasratan-ar=0@148,-190+0|dottedCircle=0+578" + "only": "RaqqSura.ttf", + "input": "۝175", + "expectation": "endofayah-ar.05=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "◌َ", - "expectation": { - "default": "fatha-ar=0@215,615+0|dottedCircle=0+578", - "RaqqSura.ttf": "fatha-ar=0@215,615+0|dottedCircle=0+578" + "only": "RaqqSura.ttf", + "input": "۝176", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "◌ُ", - "expectation": { - "default": "damma-ar=0@-175,215+0|dottedCircle=0+578", - "RaqqSura.ttf": "damma-ar=0@-175,215+0|dottedCircle=0+578" + "only": "RaqqSura.ttf", + "input": "۝177", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "◌ِ", - "expectation": { - "default": "kasra-ar=0@215,-190+0|dottedCircle=0+578", - "RaqqSura.ttf": "kasra-ar=0@215,-190+0|dottedCircle=0+578" + "only": "RaqqSura.ttf", + "input": "۝178", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "◌ٓ", - "expectation": { - "default": "madda-ar=0@-105,429+0|dottedCircle=0+578", - "RaqqSura.ttf": "madda-ar=0@-105,429+0|dottedCircle=0+578" + "only": "RaqqSura.ttf", + "input": "۝179", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "◌ٔ", - "expectation": { - "default": "fatha-ar=0@215,615+0|dottedCircle=0+578", - "RaqqSura.ttf": "fatha-ar=0@215,615+0|dottedCircle=0+578" + "only": "RaqqSura.ttf", + "input": "۝17", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "◌ٕ", - "expectation": { - "default": "kasra-ar=0@215,-190+0|dottedCircle=0+578", - "RaqqSura.ttf": "kasra-ar=0@215,-190+0|dottedCircle=0+578" + "only": "RaqqSura.ttf", + "input": "۝180", + "expectation": "endofayah-ar.10=0+1117|ayah.180=1+0", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "مر امرا", + "only": "RaqqSura.ttf", + "input": "۝181", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", "variations": { - "SPAC": -100 - }, - "expectation": { - "default": "alef-ar=6+658|reh-ar.fina=5@-130,0+263|meem-ar.init.round=4@20,0+418|alef-ar=3@-1,0+657|space.mark=2+0|reh-ar.fina=1@-130,0+263|meem-ar.init.round=0@20,0+418", - "RaqqSura.ttf": "alef-ar=6+642|reh-ar.fina=5@-150,0+237|meem-ar.init.round=4@20,0+418|alef-ar=3@-21,0+621|space.mark=2+0|reh-ar.fina=1@-150,0+237|meem-ar.init.round=0@20,0+418" + "MSHQ": 10.0 } }, { - "input": "لم تحاجون", - "expectation": { - "default": "dotabove-ar=8@5,191+0|noonghunna-ar=8+295|waw-ar.fina.round=7@400,0+892|dotbelow-ar=6@202,-112+0|_c.ain.meem=6@-7,0+28|hah-ar.init=6@-39,0+664|alef-ar.fina=5@400,0+501|_c.hah.beh=4+7|hah-ar.medi.alt=4+135|twodotsverticalabove-ar.beh=3@14,407+0|behDotless-ar.init.hah=3@63,5+572|space=2+400|meem-ar.fina=1+567|lam-ar.init=0@-30,0+93", - "RaqqSura.ttf": "dotabove-ar=8@5,191+0|noonghunna-ar=8+295|waw-ar.fina=7+477|dotbelow-ar=6@213,-112+0|hah-ar.init=6+703|alef-ar.fina=5+90|hah-ar.medi.alt=4+135|twodotsverticalabove-ar.beh=3@14,407+0|behDotless-ar.init.hah=3@63,5+572|space.mark=2+0|meem-ar.fina=1+567|lam-ar.init=0+123" + "only": "RaqqSura.ttf", + "input": "۝182", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "بي", - "features": { - "salt": true - }, - "expectation": { - "default": "twodotsverticalbelow-ar=1@332,-510+0|alefMaksura-ar.fina.wide.salt=1+267|dotbelow-ar=0@72,-46+0|behDotless-ar.init=0+130", - "RaqqSura.ttf": "twodotsverticalbelow-ar=1@332,-510+0|alefMaksura-ar.fina.wide.salt=1+267|dotbelow-ar=0@72,-46+0|behDotless-ar.init=0+100" + "only": "RaqqSura.ttf", + "input": "۝183", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "حى", - "features": { - "salt": true - }, - "expectation": { - "default": "alefMaksura-ar.fina.salt=1+282|_c.ain.yeh=0@-20,0+-5|hah-ar.init=0@-40,0+663", - "RaqqSura.ttf": "alefMaksura-ar.fina.salt=1+282|hah-ar.init=0+703" + "only": "RaqqSura.ttf", + "input": "۝184", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "سى", - "features": { - "salt": true - }, - "expectation": { - "default": "seen_alefMaksura-ar=0+346", - "RaqqSura.ttf": "seen_alefMaksura-ar=0+346" + "only": "RaqqSura.ttf", + "input": "۝185", + "expectation": "endofayah-ar.05=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "سي", - "features": { - "salt": true - }, - "expectation": { - "default": "twodotsverticalbelow-ar=0@330,-337+0|seen_alefMaksura-ar=0+346", - "RaqqSura.ttf": "twodotsverticalbelow-ar=0@330,-337+0|seen_alefMaksura-ar=0+346" + "only": "RaqqSura.ttf", + "input": "۝186", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "شي", - "features": { - "salt": true - }, - "expectation": { - "default": "twodotsverticalbelow-ar=0@330,-337+0|threedotshorizontalabove-ar.3=0@-35,167+0|seen_alefMaksura-ar=0+346", - "RaqqSura.ttf": "twodotsverticalbelow-ar=0@330,-337+0|threedotshorizontalabove-ar.3=0@-35,167+0|seen_alefMaksura-ar=0+346" + "only": "RaqqSura.ttf", + "input": "۝187", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "عى", - "features": { - "salt": true - }, - "expectation": { - "default": "alefMaksura-ar.fina.salt=1+282|_c.ain.yeh=0@-20,0+-5|ain-ar.init=0+690", - "RaqqSura.ttf": "alefMaksura-ar.fina.salt=1+282|ain-ar.init=0@-43,0+637" + "only": "RaqqSura.ttf", + "input": "۝188", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "عي", - "features": { - "salt": true - }, - "expectation": { - "default": "twodotsverticalbelow-ar=1@259,-523+0|alefMaksura-ar.fina.salt=1+282|_c.ain.yeh=0@-20,0+-5|ain-ar.init=0+690", - "RaqqSura.ttf": "twodotsverticalbelow-ar=1@259,-523+0|alefMaksura-ar.fina.salt=1+282|ain-ar.init=0@-43,0+637" + "only": "RaqqSura.ttf", + "input": "۝189", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "فى", - "features": { - "salt": true - }, - "expectation": { - "default": "alefMaksura-ar.fina.wide.salt=1+267|dotabove-ar=0@-67,373+0|fehDotless-ar.init.yeh=0+328", - "RaqqSura.ttf": "alefMaksura-ar.fina.wide.salt=1+267|dotabove-ar=0@-67,373+0|fehDotless-ar.init.yeh=0+328" + "only": "RaqqSura.ttf", + "input": "۝18", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "في", - "features": { - "salt": true - }, - "expectation": { - "default": "twodotsverticalbelow-ar=1@332,-510+0|alefMaksura-ar.fina.wide.salt=1+267|dotabove-ar=0@-67,373+0|fehDotless-ar.init.yeh=0+328", - "RaqqSura.ttf": "twodotsverticalbelow-ar=1@332,-510+0|alefMaksura-ar.fina.wide.salt=1+267|dotabove-ar=0@-67,373+0|fehDotless-ar.init.yeh=0+328" + "only": "RaqqSura.ttf", + "input": "۝190", + "expectation": "endofayah-ar.10=0+1117|ayah.190=1+0", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "كي", - "features": { - "salt": true - }, - "expectation": { - "default": "twodotsverticalbelow-ar=1@259,-523+0|alefMaksura-ar.fina.salt=1+282|kaf-ar.init.alt=0@-36,0+729", - "RaqqSura.ttf": "twodotsverticalbelow-ar=1@259,-523+0|alefMaksura-ar.fina.salt=1+282|kaf-ar.init=0@-36,0+729" + "only": "RaqqSura.ttf", + "input": "۝191", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "لي", - "features": { - "salt": true - }, - "expectation": { - "default": "twodotsverticalbelow-ar=1@332,-510+0|alefMaksura-ar.fina.wide.salt=1+267|lam-ar.init=0+123", - "RaqqSura.ttf": "twodotsverticalbelow-ar=1@332,-510+0|alefMaksura-ar.fina.wide.salt=1+267|lam-ar.init=0+123" + "only": "RaqqSura.ttf", + "input": "۝192", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "يٍ", - "features": { - "salt": true - }, - "expectation": { - "default": "kasratan-ar.alt=0@285,-257+0|twodotsverticalbelow-ar=0@259,-436+0|alefMaksura-ar.salt=0+328", - "RaqqSura.ttf": "kasratan-ar.alt=0@285,-257+0|twodotsverticalbelow-ar=0@259,-436+0|alefMaksura-ar.salt=0+328" + "only": "RaqqSura.ttf", + "input": "۝193", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "يِ", - "features": { - "salt": true - }, - "expectation": { - "default": "kasra-ar=0@285,-190+0|twodotsverticalbelow-ar=0@259,-436+0|alefMaksura-ar.salt=0+328", - "RaqqSura.ttf": "kasra-ar=0@285,-190+0|twodotsverticalbelow-ar=0@259,-436+0|alefMaksura-ar.salt=0+328" + "only": "RaqqSura.ttf", + "input": "۝194", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "بي", - "features": { - "salt": 2 - }, - "expectation": { - "default": "twodotsverticalbelow-ar=1@449,-149+0|yehbarree-ar.fina.baseline=1+297|dotbelow-ar=0@72,64+0|behDotless-ar.init=0@0,110+770", - "RaqqSura.ttf": "twodotsverticalbelow-ar=1@449,-139+0|yehbarree-ar.fina.baseline=1+297|dotbelow-ar=0@72,64+0|behDotless-ar.init=0@0,110+760" + "only": "RaqqSura.ttf", + "input": "۝195", + "expectation": "endofayah-ar.05=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "حى", - "features": { - "salt": 2 - }, - "expectation": { - "default": "yehbarree-ar.fina.baseline=1+297|_c.ain.yeh=0@-5,110+10|hah-ar.init=0@-40,110+713", - "RaqqSura.ttf": "yehbarree-ar.fina.baseline=1+297|hah-ar.init=0@0,110+763" + "only": "RaqqSura.ttf", + "input": "۝196", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "سى", - "features": { - "salt": 2 - }, - "expectation": { - "default": "seen_alefMaksura-ar=0+346", - "RaqqSura.ttf": "seen_alefMaksura-ar=0+346" + "only": "RaqqSura.ttf", + "input": "۝197", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "سي", - "features": { - "salt": 2 - }, - "expectation": { - "default": "twodotsverticalbelow-ar=0@330,-337+0|seen_alefMaksura-ar=0+346", - "RaqqSura.ttf": "twodotsverticalbelow-ar=0@330,-337+0|seen_alefMaksura-ar=0+346" + "only": "RaqqSura.ttf", + "input": "۝198", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "شي", - "features": { - "salt": 2 - }, - "expectation": { - "default": "twodotsverticalbelow-ar=0@330,-337+0|threedotshorizontalabove-ar.3=0@-35,167+0|seen_alefMaksura-ar=0+346", - "RaqqSura.ttf": "twodotsverticalbelow-ar=0@330,-337+0|threedotshorizontalabove-ar.3=0@-35,167+0|seen_alefMaksura-ar=0+346" + "only": "RaqqSura.ttf", + "input": "۝199", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "عى", - "features": { - "salt": 2 - }, - "expectation": { - "default": "yehbarree-ar.fina.baseline=1+297|_c.ain.yeh=0@-5,110+10|ain-ar.init=0@0,110+760", - "RaqqSura.ttf": "yehbarree-ar.fina.baseline=1+297|ain-ar.init=0@-30,110+710" + "only": "RaqqSura.ttf", + "input": "۝19", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "عي", - "features": { - "salt": 2 - }, - "expectation": { - "default": "twodotsverticalbelow-ar=1@449,-149+0|yehbarree-ar.fina.baseline=1+297|_c.ain.yeh=0@-5,110+10|ain-ar.init=0@0,110+760", - "RaqqSura.ttf": "twodotsverticalbelow-ar=1@449,-139+0|yehbarree-ar.fina.baseline=1+297|ain-ar.init=0@-30,110+710" + "only": "RaqqSura.ttf", + "input": "۝200", + "expectation": "endofayah-ar.10=0+1117|ayah.200=1+0", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "فى", - "features": { - "salt": 2 - }, - "expectation": { - "default": "yehbarree-ar.fina.baseline=1+297|dotabove-ar=0@-67,483+0|fehDotless-ar.init.yeh=0@0,110+768", - "RaqqSura.ttf": "yehbarree-ar.fina.baseline=1+297|dotabove-ar=0@-67,483+0|fehDotless-ar.init.yeh=0@0,110+768" + "only": "RaqqSura.ttf", + "input": "۝201", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "في", - "features": { - "salt": 2 - }, - "expectation": { - "default": "twodotsverticalbelow-ar=1@449,-149+0|yehbarree-ar.fina.baseline=1+297|dotabove-ar=0@-67,483+0|fehDotless-ar.init.yeh=0@0,110+768", - "RaqqSura.ttf": "twodotsverticalbelow-ar=1@449,-139+0|yehbarree-ar.fina.baseline=1+297|dotabove-ar=0@-67,483+0|fehDotless-ar.init.yeh=0@0,110+768" + "only": "RaqqSura.ttf", + "input": "۝202", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "كي", - "features": { - "salt": 2 - }, - "expectation": { - "default": "twodotsverticalbelow-ar=1@449,-149+0|yehbarree-ar.fina.baseline=1+297|kaf-ar.init.alt=0@-21,110+744", - "RaqqSura.ttf": "twodotsverticalbelow-ar=1@449,-139+0|yehbarree-ar.fina.baseline=1+297|kaf-ar.init=0@-21,110+744" + "only": "RaqqSura.ttf", + "input": "۝203", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "لي", - "features": { - "salt": 2 - }, - "expectation": { - "default": "twodotsverticalbelow-ar=1@449,-149+0|yehbarree-ar.fina.baseline=1+297|lam-ar.init.hah1=0@0,-5+763", - "RaqqSura.ttf": "twodotsverticalbelow-ar=1@449,-139+0|yehbarree-ar.fina.baseline=1+297|lam-ar.init.hah1=0@0,-5+783" + "only": "RaqqSura.ttf", + "input": "۝204", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٠", + "only": "RaqqSura.ttf", + "input": "۝205", + "expectation": "endofayah-ar.05=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝١", + "only": "RaqqSura.ttf", + "input": "۝206", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٢", + "only": "RaqqSura.ttf", + "input": "۝207", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٣", + "only": "RaqqSura.ttf", + "input": "۝208", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٤", + "only": "RaqqSura.ttf", + "input": "۝209", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٥", + "only": "RaqqSura.ttf", + "input": "۝20", + "expectation": "endofayah-ar.10=0+1117|ayah.020=1+0", "direction": "ltr", - "expectation": { - "default": "endofayah-ar.05=0+400", - "RaqqSura.ttf": "endofayah-ar.05=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٦", + "only": "RaqqSura.ttf", + "input": "۝210", + "expectation": "endofayah-ar.10=0+1117|ayah.210=1+0", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٧", + "only": "RaqqSura.ttf", + "input": "۝211", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٨", + "only": "RaqqSura.ttf", + "input": "۝212", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٩", + "only": "RaqqSura.ttf", + "input": "۝213", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٥", + "only": "RaqqSura.ttf", + "input": "۝214", + "expectation": "endofayah-ar=0+400", "direction": "ltr", - "features": { - "salt": true - }, - "expectation": { - "default": "endofayah-ar.10=0+1117|ayah.005=0+0", - "RaqqSura.ttf": "endofayah-ar.10=0+1117|ayah.005=0+0" + "variations": { + "MSHQ": 10.0 } }, { - "input": "ئفة", - "expectation": { - "default": "twodotsverticalabove-ar=2@159,377+0|heh-ar.fina=2+339|dotabove-ar=1@1,329+0|_c.feh.medi.beh=1+0|fehDotless-ar.medi=1+377|fatha-ar=0@-13,341+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", - "RaqqSura.ttf": "twodotsverticalabove-ar=2@186,388+0|heh-ar.fina=2+336|dotabove-ar=1@1,329+0|fehDotless-ar.medi=1+377|fatha-ar=0@-32,339+0|behDotless-ar.init=0+100" + "only": "RaqqSura.ttf", + "input": "۝215", + "expectation": "endofayah-ar.05=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "ئِم", - "expectation": { - "default": "meem-ar.fina=2+567|kasra-ar=0@25,-111+0|behDotless-ar.init=0@-30,0+100", - "RaqqSura.ttf": "meem-ar.fina=2+567|kasra-ar=0@55,-111+0|behDotless-ar.init=0+100" + "only": "RaqqSura.ttf", + "input": "۝216", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "اطح", - "expectation": { - "default": "hah-ar.fina=2+417|tah-ar.init.hah1=1+765|alef-ar=0@400,0+1058", - "RaqqSura.ttf": "hah-ar.fina=2+417|tah-ar.init.hah1=1+765|alef-ar=0+642" + "only": "RaqqSura.ttf", + "input": "۝217", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "الح", - "expectation": { - "default": "hah-ar.fina.alt=2+407|lam-ar.init.hah1.alt=1@63,0+578|alef-ar=0@400,0+1058", - "RaqqSura.ttf": "hah-ar.fina.alt=2+407|lam-ar.init.hah1.alt=1@63,0+578|alef-ar=0+642" + "only": "RaqqSura.ttf", + "input": "۝218", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "الے", - "expectation": { - "default": "yehbarree-ar.fina.baseline=2+297|lam-ar.init.hah1=1@0,-5+763|alef-ar=0@395,0+1053", - "RaqqSura.ttf": "yehbarree-ar.fina.baseline=2+297|lam-ar.init.short=1@0,110+760|alef-ar.lam=0+642" + "only": "RaqqSura.ttf", + "input": "۝219", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "ببا", - "expectation": { - "default": "alef-ar.fina=2+101|dotbelow-ar=1@9,-110+0|_c.seen.beh=1+0|behDotless-ar.medi=1+128|dotbelow-ar=0@81,-46+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", - "RaqqSura.ttf": "alef-ar.fina=2+90|dotbelow-ar=1@-19,-110+0|behDotless-ar.medi=1+100|dotbelow-ar=0@51,-46+0|behDotless-ar.init.high=0+100" + "only": "RaqqSura.ttf", + "input": "۝21", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "ببب", - "expectation": { - "default": "dotbelow-ar=2@834,-111+0|behDotless-ar.fina=2+984|dotbelow-ar=1@14,-110+0|_c.seen.beh=1+0|behDotless-ar.medi.high=1+128|dotbelow-ar=0@72,-46+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", - "RaqqSura.ttf": "dotbelow-ar=2@834,-111+0|behDotless-ar.fina=2+984|dotbelow-ar=1@-13,-110+0|behDotless-ar.medi.high=1+100|dotbelow-ar=0@72,-46+0|behDotless-ar.init=0+100" + "only": "RaqqSura.ttf", + "input": "۝220", + "expectation": "endofayah-ar.10=0+1117|ayah.220=1+0", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "ببن", - "expectation": { - "default": "dotabove-ar=2@-3,101+0|noonghunna-ar.fina=2+250|dotbelow-ar=1@55,-110+0|behDotless-ar.medi.round=1+108|dotbelow-ar=0@81,-46+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", - "RaqqSura.ttf": "dotabove-ar=2@-3,90+0|noonghunna-ar.fina=2+250|dotbelow-ar=1@50,-110+0|behDotless-ar.medi.round=1@-6,0+104|dotbelow-ar=0@51,-46+0|behDotless-ar.init.high=0+100" + "only": "RaqqSura.ttf", + "input": "۝221", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "بسم", - "expectation": { - "default": "meem-ar.fina=2+567|_c.seen.meem=1+16|seen-ar.medi.low=1@-36,0+375|dotbelow-ar=0@72,-46+0|_c.seen.beh=0+0|behDotless-ar.init.med=0+130", - "RaqqSura.ttf": "meem-ar.fina=2+567|seen-ar.medi=1+345|dotbelow-ar=0@51,-46+0|behDotless-ar.init.high=0+100" + "only": "RaqqSura.ttf", + "input": "۝222", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "بسن", - "expectation": { - "default": "dotabove-ar=2@-3,101+0|noonghunna-ar.fina=2+250|_c.hah.noon=1+-20|seen-ar.medi.low=1+411|dotbelow-ar=0@72,-46+0|_c.seen.beh=0+0|behDotless-ar.init.med=0+130", - "RaqqSura.ttf": "dotabove-ar=2@-3,90+0|noonghunna-ar.fina=2+250|seen-ar.medi=1+345|dotbelow-ar=0@51,-46+0|behDotless-ar.init.high=0+100" + "only": "RaqqSura.ttf", + "input": "۝223", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "بسي", - "expectation": { - "default": "twodotsverticalbelow-ar=1@339,-337+0|seen_alefMaksura-ar.fina=1+343|dotbelow-ar=0@81,-46+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", - "RaqqSura.ttf": "twodotsverticalbelow-ar=1@339,-337+0|seen_alefMaksura-ar.fina=1+343|dotbelow-ar=0@51,-46+0|behDotless-ar.init.high=0+100" + "only": "RaqqSura.ttf", + "input": "۝224", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "بسٍ", - "expectation": { - "default": "kasratan-ar.alt=1@268,-383+0|seen-ar.fina.low=1+487|dotbelow-ar=0@72,-46+0|_c.seen.beh=0+0|behDotless-ar.init.med=0+130", - "RaqqSura.ttf": "kasratan-ar.alt=1@268,-383+0|seen-ar.fina=1+484|dotbelow-ar=0@51,-46+0|behDotless-ar.init.high=0+100" + "only": "RaqqSura.ttf", + "input": "۝225", + "expectation": "endofayah-ar.05=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "بشي", - "expectation": { - "default": "twodotsverticalbelow-ar=1@339,-337+0|threedotshorizontalabove-ar.3=1@-35,167+0|seen_alefMaksura-ar.fina=1+343|dotbelow-ar=0@81,-46+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", - "RaqqSura.ttf": "twodotsverticalbelow-ar=1@339,-337+0|threedotshorizontalabove-ar.3=1@-35,167+0|seen_alefMaksura-ar.fina=1+343|dotbelow-ar=0@51,-46+0|behDotless-ar.init.high=0+100" + "only": "RaqqSura.ttf", + "input": "۝226", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "بعا", - "expectation": { - "default": "alef-ar.fina=2+101|_c.ain.medi.beh=1+66|ain-ar.medi=1+220|dotbelow-ar=0@81,-46+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", - "RaqqSura.ttf": "alef-ar.fina=2+90|ain-ar.medi=1+202|dotbelow-ar=0@51,-46+0|behDotless-ar.init.high=0+100" + "only": "RaqqSura.ttf", + "input": "۝227", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "بعد", - "expectation": { - "default": "dal-ar.fina=2+875|_c.ain.dal=1+47|ain-ar.medi=1+220|dotbelow-ar=0@81,-46+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", - "RaqqSura.ttf": "dal-ar.fina=2+875|ain-ar.medi=1+202|dotbelow-ar=0@51,-46+0|behDotless-ar.init.high=0+100" + "only": "RaqqSura.ttf", + "input": "۝228", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "بعض", - "expectation": { - "default": "dotabove-ar=2@398,247+0|sad-ar.fina=2+876|_c.ain.dal=1+47|ain-ar.medi=1+220|dotbelow-ar=0@81,-46+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", - "RaqqSura.ttf": "dotabove-ar=2@398,247+0|sad-ar.fina=2+876|ain-ar.medi=1+202|dotbelow-ar=0@51,-46+0|behDotless-ar.init.high=0+100" + "only": "RaqqSura.ttf", + "input": "۝229", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "بعن", - "expectation": { - "default": "dotabove-ar=2@-3,101+0|noonghunna-ar.fina=2+250|_c.hah.noon=1+-20|ain-ar.medi=1+220|dotbelow-ar=0@81,-46+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", - "RaqqSura.ttf": "dotabove-ar=2@-3,90+0|noonghunna-ar.fina=2+250|ain-ar.medi=1+202|dotbelow-ar=0@51,-46+0|behDotless-ar.init.high=0+100" + "only": "RaqqSura.ttf", + "input": "۝22", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "بـد", - "expectation": { - "default": "dal-ar.fina=2+875|kashida-ar=1+100|dotbelow-ar=0@72,-46+0|behDotless-ar.init=0+130", - "RaqqSura.ttf": "dal-ar.fina=2+875|kashida-ar=1+100|dotbelow-ar=0@72,-46+0|behDotless-ar.init=0+100" + "only": "RaqqSura.ttf", + "input": "۝230", + "expectation": "endofayah-ar.10=0+1117|ayah.230=1+0", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "بـك", - "expectation": { - "default": "kaf-ar.fina=2+889|kashida-ar=1+100|dotbelow-ar=0@72,-46+0|behDotless-ar.init=0+130", - "RaqqSura.ttf": "kaf-ar.fina=2+889|kashida-ar=1+100|dotbelow-ar=0@72,-46+0|behDotless-ar.init=0+100" + "only": "RaqqSura.ttf", + "input": "۝231", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "بفخ", - "expectation": { - "default": "dotabove-ar=2@253,213+0|hah-ar.fina=2+417|dotabove-ar=1@1,444+0|fehDotless-ar.medi=1@0,115+377|dotbelow-ar=0@72,29+0|_c.seen.beh=0@0,115+0|behDotless-ar.init=0@0,115+130", - "RaqqSura.ttf": "dotabove-ar=2@253,213+0|hah-ar.fina=2+417|dotabove-ar=1@1,444+0|fehDotless-ar.medi=1@0,115+377|dotbelow-ar=0@72,69+0|behDotless-ar.init=0@0,115+100" + "only": "RaqqSura.ttf", + "input": "۝232", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "بفن", - "expectation": { - "default": "dotabove-ar=2@-3,101+0|noonghunna-ar.fina=2+250|dotabove-ar=1@-44,329+0|_c.hah.noon=1+-20|fehDotless-ar.medi=1@-25,0+352|dotbelow-ar=0@72,-46+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", - "RaqqSura.ttf": "dotabove-ar=2@-3,90+0|noonghunna-ar.fina=2+250|dotabove-ar=1@1,329+0|fehDotless-ar.medi=1+377|dotbelow-ar=0@72,-46+0|behDotless-ar.init=0+100" + "only": "RaqqSura.ttf", + "input": "۝233", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "بكم", - "expectation": { - "default": "meem-ar.fina=2+567|kaf-ar.medi.alt=1@-12,0+746|dotbelow-ar=0@51,-46+0|behDotless-ar.init=0@-21,0+109", - "RaqqSura.ttf": "meem-ar.fina=2+567|kaf-ar.medi=1@-12,0+746|dotbelow-ar=0@72,-46+0|behDotless-ar.init=0+100" + "only": "RaqqSura.ttf", + "input": "۝234", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "بلا", - "expectation": { - "default": "lam_alef-ar.fina=1+510|dotbelow-ar=0@72,-46+0|behDotless-ar.init=0+130", - "RaqqSura.ttf": "lam_alef-ar.fina=1+522|dotbelow-ar=0@72,-46+0|behDotless-ar.init=0+100" + "only": "RaqqSura.ttf", + "input": "۝235", + "expectation": "endofayah-ar.05=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "بلٍ", - "expectation": { - "default": "kasratan-ar.alt=1@171,-277+0|lam-ar.fina=1+177|dotbelow-ar=0@72,-46+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", - "RaqqSura.ttf": "kasratan-ar.alt=1@171,-277+0|lam-ar.fina=1+177|dotbelow-ar=0@72,-46+0|behDotless-ar.init=0+100" + "only": "RaqqSura.ttf", + "input": "۝236", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "بلِ", - "expectation": { - "default": "kasra-ar=1@171,-210+0|lam-ar.fina=1+177|dotbelow-ar=0@72,-46+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", - "RaqqSura.ttf": "kasra-ar=1@171,-210+0|lam-ar.fina=1+177|dotbelow-ar=0@72,-46+0|behDotless-ar.init=0+100" + "only": "RaqqSura.ttf", + "input": "۝237", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "بما", - "expectation": { - "default": "alef-ar.fina=2+101|_c.seen.beh=1+0|meem-ar.medi=1+380|dotbelow-ar=0@47,-46+0|behDotless-ar.init=0@-25,0+105", - "RaqqSura.ttf": "alef-ar.fina=2+90|meem-ar.medi=1@-28,0+352|dotbelow-ar=0@72,-46+0|behDotless-ar.init=0+100" + "only": "RaqqSura.ttf", + "input": "۝238", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "بمح", - "expectation": { - "default": "hah-ar.fina=2+417|meem-ar.medi=1@0,115+380|dotbelow-ar=0@47,29+0|behDotless-ar.init=0@-25,115+105", - "RaqqSura.ttf": "hah-ar.fina=2+417|meem-ar.medi=1@-28,115+352|dotbelow-ar=0@72,29+0|behDotless-ar.init=0@0,115+100" + "only": "RaqqSura.ttf", + "input": "۝239", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "بمن", - "expectation": { - "default": "dotabove-ar=2@-3,101+0|noonghunna-ar.fina=2+250|meem-ar.medi.round2=1+398|dotbelow-ar=0@72,-46+0|behDotless-ar.init=0+130", - "RaqqSura.ttf": "dotabove-ar=2@-3,90+0|noonghunna-ar.fina=2+250|meem-ar.medi.round2=1+398|dotbelow-ar=0@72,-46+0|behDotless-ar.init=0+100" + "only": "RaqqSura.ttf", + "input": "۝23", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "بنم", - "expectation": { - "default": "meem-ar.fina.round=2+554|dotabove-ar.beh=1@-29,270+0|behDotless-ar.medi.round=1+108|dotbelow-ar=0@81,-46+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", - "RaqqSura.ttf": "meem-ar.fina.round=2+554|dotabove-ar.beh=1@-11,297+0|behDotless-ar.medi.round=1@-6,0+104|dotbelow-ar=0@51,-46+0|behDotless-ar.init.high=0+100" + "only": "RaqqSura.ttf", + "input": "۝240", + "expectation": "endofayah-ar.10=0+1117|ayah.240=1+0", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "بني", - "expectation": { - "default": "twodotsverticalbelow-ar=2@339,-334+0|alefMaksura-ar.fina=2+282|dotabove-ar.beh=1@8,294+0|behDotless-ar.medi=1+128|dotbelow-ar=0@81,-46+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", - "RaqqSura.ttf": "twodotsverticalbelow-ar=1@311,-329+0|dotabove-ar=1@-10,297+0|behDotless_alefMaksura-ar.fina=1+110|dotbelow-ar=0@51,-46+0|behDotless-ar.init.high=0+100" + "only": "RaqqSura.ttf", + "input": "۝241", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "بنٍ", - "expectation": { - "default": "kasratan-ar.alt=1@260,-361+0|dotabove-ar=1@-3,101+0|noonghunna-ar.fina=1+250|dotbelow-ar=0@38,-46+0|behDotless-ar.init=0@-34,0+96", - "RaqqSura.ttf": "kasratan-ar.alt=1@260,-361+0|dotabove-ar=1@-3,90+0|noonghunna-ar.fina=1+250|dotbelow-ar=0@38,-46+0|behDotless-ar.init=0@-34,0+66" + "only": "RaqqSura.ttf", + "input": "۝242", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "بهح", - "expectation": { - "default": "hah-ar.fina=2+417|heh-ar.medi=1@0,115+357|dotbelow-ar=0@122,119+0|_c.seen.beh=0@0,115+0|behDotless-ar.init.med=0@0,115+130", - "RaqqSura.ttf": "hah-ar.fina=2+417|heh-ar.medi=1@0,115+354|dotbelow-ar=0@72,69+0|behDotless-ar.init.med=0@0,115+100" + "only": "RaqqSura.ttf", + "input": "۝243", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "بهم", - "expectation": { - "default": "meem-ar.fina.round=2+554|heh-ar.medi.round=1+323|dotbelow-ar=0@72,-46+0|_c.seen.beh=0+0|behDotless-ar.init.med=0+130", - "RaqqSura.ttf": "meem-ar.fina.round=2+554|heh-ar.medi.round=1+320|dotbelow-ar=0@72,-46+0|behDotless-ar.init.med=0+100" + "only": "RaqqSura.ttf", + "input": "۝244", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "بهن", - "expectation": { - "default": "dotabove-ar=2@-3,101+0|noonghunna-ar.fina=2+250|heh-ar.medi.round=1+323|dotbelow-ar=0@72,-46+0|_c.seen.beh=0+0|behDotless-ar.init.med=0+130", - "RaqqSura.ttf": "dotabove-ar=2@-3,90+0|noonghunna-ar.fina=2+250|heh-ar.medi.round=1+320|dotbelow-ar=0@72,-46+0|behDotless-ar.init.med=0+100" + "only": "RaqqSura.ttf", + "input": "۝245", + "expectation": "endofayah-ar.05=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "بهو", - "expectation": { - "default": "waw-ar.fina.round=2+492|heh-ar.medi.round=1+323|dotbelow-ar=0@72,-46+0|_c.seen.beh=0+0|behDotless-ar.init.med=0+130", - "RaqqSura.ttf": "waw-ar.fina.round=2+492|heh-ar.medi.round=1+320|dotbelow-ar=0@72,-46+0|behDotless-ar.init.med=0+100" + "only": "RaqqSura.ttf", + "input": "۝246", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "بيت", - "expectation": { - "default": "twodotsverticalabove-ar=2@803,264+0|behDotless-ar.fina=2+984|twodotsverticalbelow-ar=1@14,-137+0|_c.seen.beh=1+0|behDotless-ar.medi.high=1+128|dotbelow-ar=0@72,-46+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", - "RaqqSura.ttf": "twodotsverticalabove-ar=2@803,264+0|behDotless-ar.fina=2+984|twodotsverticalbelow-ar=1@-13,-137+0|behDotless-ar.medi.high=1+100|dotbelow-ar=0@72,-46+0|behDotless-ar.init=0+100" + "only": "RaqqSura.ttf", + "input": "۝247", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "بين", - "expectation": { - "default": "dotabove-ar=2@-3,101+0|noonghunna-ar.fina=2+250|twodotsverticalbelow-ar=1@55,-137+0|behDotless-ar.medi.round=1+108|dotbelow-ar=0@81,-46+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", - "RaqqSura.ttf": "dotabove-ar=2@-3,90+0|noonghunna-ar.fina=2+250|twodotsverticalbelow-ar=1@50,-137+0|behDotless-ar.medi.round=1@-6,0+104|dotbelow-ar=0@51,-46+0|behDotless-ar.init.high=0+100" + "only": "RaqqSura.ttf", + "input": "۝248", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "بُل", - "expectation": { - "default": "lam-ar.fina=2+177|damma-ar=0@-63,98+0|dotbelow-ar=0@72,-46+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", - "RaqqSura.ttf": "lam-ar.fina=2+177|damma-ar=0@-85,98+0|dotbelow-ar=0@72,-46+0|behDotless-ar.init=0+100" + "only": "RaqqSura.ttf", + "input": "۝249", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "تبع", - "expectation": { - "default": "ain-ar.fina=2+267|dotbelow-ar=1@9,-110+0|_c.seen.beh=1+0|behDotless-ar.medi=1+128|twodotsverticalabove-ar.beh=0@-39,400+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", - "RaqqSura.ttf": "ain-ar.fina=2+262|dotbelow-ar=1@-19,-110+0|behDotless-ar.medi=1+100|twodotsverticalabove-ar.beh=0@-45,388+0|behDotless-ar.init.high=0+100" + "only": "RaqqSura.ttf", + "input": "۝24", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "تتا", - "expectation": { - "default": "alef-ar.fina=2+101|twodotsverticalabove-ar.vert.beh=1@5,298+0|_c.seen.beh=1+0|behDotless-ar.medi=1+128|twodotsverticalabove-ar.beh=0@-39,400+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", - "RaqqSura.ttf": "alef-ar.fina=2+90|twodotsverticalabove-ar.vert.beh=1@-18,301+0|behDotless-ar.medi=1+100|twodotsverticalabove-ar.beh=0@-45,388+0|behDotless-ar.init.high=0+100" + "only": "RaqqSura.ttf", + "input": "۝250", + "expectation": "endofayah-ar.10=0+1117|ayah.250=1+0", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "تعا", - "expectation": { - "default": "alef-ar.fina=2+101|_c.ain.medi.beh=1+66|ain-ar.medi=1+220|twodotsverticalabove-ar.beh=0@-39,400+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", - "RaqqSura.ttf": "alef-ar.fina=2+90|ain-ar.medi=1+202|twodotsverticalabove-ar.beh=0@-45,388+0|behDotless-ar.init.high=0+100" + "only": "RaqqSura.ttf", + "input": "۝251", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "تعب", - "expectation": { - "default": "dotbelow-ar=2@834,-111+0|behDotless-ar.fina=2+984|_c.ain.medi.beh=1+66|ain-ar.medi=1+220|twodotsverticalabove-ar.beh=0@-39,400+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", - "RaqqSura.ttf": "dotbelow-ar=2@834,-111+0|behDotless-ar.fina=2+984|ain-ar.medi=1+202|twodotsverticalabove-ar.beh=0@-45,388+0|behDotless-ar.init.high=0+100" + "only": "RaqqSura.ttf", + "input": "۝252", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 + } + }, + { + "only": "RaqqSura.ttf", + "input": "۝253", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "تعل", - "expectation": { - "default": "lam-ar.fina=2+177|_c.ain.medi.beh=1+66|ain-ar.medi=1+220|twodotsverticalabove-ar.beh=0@-39,400+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", - "RaqqSura.ttf": "lam-ar.fina=2+177|ain-ar.medi=1+202|twodotsverticalabove-ar.beh=0@-45,388+0|behDotless-ar.init.high=0+100" + "only": "RaqqSura.ttf", + "input": "۝254", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "ثثا", - "expectation": { - "default": "alef-ar.fina=2+101|threedotsupabove-ar.vert.beh=1@5,298+0|_c.seen.beh=1+0|behDotless-ar.medi=1+128|threedotsupabove-ar.beh=0@-69,400+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", - "RaqqSura.ttf": "alef-ar.fina=2+90|threedotsupabove-ar.vert.beh=1@-18,301+0|behDotless-ar.medi=1+100|threedotsupabove-ar.beh=0@-75,388+0|behDotless-ar.init.high=0+100" + "only": "RaqqSura.ttf", + "input": "۝255", + "expectation": "endofayah-ar.05=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "ثغر", - "expectation": { - "default": "reh-ar.fina=2+393|dotabove-ar=1@-67,223+0|_c.ain.medi.reh=1+7|ain-ar.medi=1+220|threedotsupabove-ar.beh=0@-69,400+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", - "RaqqSura.ttf": "reh-ar.fina=2+387|dotabove-ar=1@-74,223+0|ain-ar.medi=1+202|threedotsupabove-ar.beh=0@-75,388+0|behDotless-ar.init.high=0+100" + "only": "RaqqSura.ttf", + "input": "۝256", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "ججا", - "expectation": { - "default": "alef-ar.fina=2+101|dotbelow-ar=1@220,-112+0|_c.hah.beh=1+7|hah-ar.medi=1+133|dotbelow-ar=0@400,-17+0|hah-ar.init.hah=0@0,122+579", - "RaqqSura.ttf": "alef-ar.fina=2+90|dotbelow-ar=1@213,-112+0|hah-ar.medi=1+133|dotbelow-ar=0@400,-17+0|hah-ar.init.hah=0@0,122+579" + "only": "RaqqSura.ttf", + "input": "۝257", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "جلح", - "expectation": { - "default": "hah-ar.fina=2+417|lam-ar.medi.hah1=1+125|dotbelow-ar=0@270,-17+0|_c.hah.beh=0@0,115+7|hah-ar.init=0@0,115+703", - "RaqqSura.ttf": "hah-ar.fina=2+417|lam-ar.medi.hah1=1+125|dotbelow-ar=0@213,3+0|hah-ar.init=0@0,115+703" + "only": "RaqqSura.ttf", + "input": "۝258", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "جنح", - "expectation": { - "default": "hah-ar.fina=2+417|dotabove-ar.beh=1@8,409+0|behDotless-ar.medi=1@0,115+128|dotbelow-ar=0@270,-17+0|_c.hah.beh=0@0,115+7|hah-ar.init=0@0,115+703", - "RaqqSura.ttf": "hah-ar.fina=2+417|dotabove-ar.beh=1@-15,412+0|behDotless-ar.medi=1@0,115+100|dotbelow-ar=0@213,3+0|hah-ar.init=0@0,115+703" + "only": "RaqqSura.ttf", + "input": "۝259", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "جنى", - "expectation": { - "default": "alefMaksura-ar.fina.tooth=2+9|dotabove-ar.beh=1@-29,270+0|behDotless-ar.medi.round=1+108|dotbelow-ar=0@220,-112+0|_c.hah.beh=0+7|hah-ar.init=0+703", - "RaqqSura.ttf": "dotabove-ar=1@-10,297+0|behDotless_alefMaksura-ar.fina=1+110|dotbelow-ar=0@213,-112+0|hah-ar.init=0+703" + "only": "RaqqSura.ttf", + "input": "۝25", + "expectation": "endofayah-ar.05=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "حال", - "expectation": { - "default": "lam-ar=2+186|alef-ar.fina=1@400,0+501|_c.hah.beh=0+7|hah-ar.init=0+703", - "RaqqSura.ttf": "lam-ar.short=2+186|alef-ar.fina.lam=1+90|hah-ar.init=0+703" + "only": "RaqqSura.ttf", + "input": "۝260", + "expectation": "endofayah-ar.10=0+1117|ayah.260=1+0", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "حبا", - "expectation": { - "default": "alef-ar.fina=2+101|dotbelow-ar=1@9,-110+0|_c.seen.beh=1+0|behDotless-ar.medi=1+128|_c.hah.beh=0+7|hah-ar.init=0+703", - "RaqqSura.ttf": "alef-ar.fina=2+90|dotbelow-ar=1@-19,-110+0|behDotless-ar.medi=1+100|hah-ar.init=0+703" + "only": "RaqqSura.ttf", + "input": "۝261", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "حبب", - "expectation": { - "default": "dotbelow-ar=2@834,-111+0|behDotless-ar.fina=2+984|dotbelow-ar=1@14,-110+0|_c.seen.beh=1+0|behDotless-ar.medi.high=1+128|_c.hah.beh=0+7|hah-ar.init=0+703", - "RaqqSura.ttf": "dotbelow-ar=2@834,-111+0|behDotless-ar.fina=2+984|dotbelow-ar=1@-13,-110+0|behDotless-ar.medi.high=1+100|hah-ar.init=0+703" + "only": "RaqqSura.ttf", + "input": "۝262", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "حبر", - "expectation": { - "default": "reh-ar.fina=2+393|dotbelow-ar=1@9,-140+0|behDotless-ar.medi=1+128|_c.hah.beh=0+7|hah-ar.init=0+703", - "RaqqSura.ttf": "reh-ar.fina=2+387|dotbelow-ar=1@-19,-140+0|behDotless-ar.medi=1+100|hah-ar.init=0+703" + "only": "RaqqSura.ttf", + "input": "۝263", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "حبه", - "expectation": { - "default": "heh-ar.fina=2+339|dotbelow-ar=1@17,-110+0|_c.seen.beh=1+0|behDotless-ar.medi.med=1+128|_c.hah.beh=0+7|hah-ar.init=0+703", - "RaqqSura.ttf": "heh-ar.fina=2+336|dotbelow-ar=1@-13,-110+0|behDotless-ar.medi.med=1+100|hah-ar.init=0+703" + "only": "RaqqSura.ttf", + "input": "۝264", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "حبو", - "expectation": { - "default": "waw-ar.fina=2+472|dotbelow-ar=1@-1,-140+0|behDotless-ar.medi=1@-10,0+118|_c.hah.beh=0+7|hah-ar.init=0+703", - "RaqqSura.ttf": "waw-ar.fina=2+477|dotbelow-ar=1@-29,-140+0|behDotless-ar.medi=1@-10,0+90|hah-ar.init=0+703" + "only": "RaqqSura.ttf", + "input": "۝265", + "expectation": "endofayah-ar.05=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "حبى", - "expectation": { - "default": "alefMaksura-ar.fina=2+282|dotbelow-ar=1@79,-110+0|behDotless-ar.medi=1+128|_c.hah.beh=0+7|hah-ar.init=0+703", - "RaqqSura.ttf": "dotbelow-ar=1@-14,-110+0|behDotless_alefMaksura-ar.fina=1+110|hah-ar.init=0+703" + "only": "RaqqSura.ttf", + "input": "۝266", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "حتى", - "expectation": { - "default": "alefMaksura-ar.fina.tooth=2+9|twodotsverticalabove-ar.beh=1@-59,278+0|behDotless-ar.medi.round=1+108|_c.hah.beh=0+7|hah-ar.init=0+703", - "RaqqSura.ttf": "twodotsverticalabove-ar=1@-40,305+0|behDotless_alefMaksura-ar.fina=1+110|hah-ar.init=0+703" + "only": "RaqqSura.ttf", + "input": "۝267", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "حجج", - "expectation": { - "default": "dotbelow-ar=2@571,-122+0|hah-ar.fina=2+417|dotbelow-ar=1@401,-25+0|hah-ar.medi.hah=1@0,115+109|hah-ar.init.hah=0@0,237+579", - "RaqqSura.ttf": "dotbelow-ar=2@571,-122+0|hah-ar.fina=2+417|dotbelow-ar=1@401,-25+0|hah-ar.medi.hah=1@0,115+109|hah-ar.init.hah=0@0,237+579" + "only": "RaqqSura.ttf", + "input": "۝268", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "حسا", - "expectation": { - "default": "alef-ar.fina=2+101|_c.seen.beh=1+0|seen-ar.medi.low=1+411|_c.hah.beh=0+7|hah-ar.init=0+703", - "RaqqSura.ttf": "alef-ar.fina=2+90|seen-ar.medi.low=1+433|hah-ar.init=0@5,0+708" + "only": "RaqqSura.ttf", + "input": "۝269", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "حضا", - "expectation": { - "default": "alef-ar.fina=2+101|dotabove-ar=1@310,247+0|_c.seen.beh=1+0|sad-ar.medi=1+758|_c.hah.dal=0+71|hah-ar.init=0@-71,0+632", - "RaqqSura.ttf": "alef-ar.fina=2+90|dotabove-ar=1@310,247+0|sad-ar.medi=1+758|hah-ar.init=0+703" + "only": "RaqqSura.ttf", + "input": "۝26", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "حطا", - "expectation": { - "default": "alef-ar.fina.short=2+102|_c.seen.beh=1+0|tah-ar.medi=1+758|_c.hah.dal=0+71|hah-ar.init=0@-71,0+632", - "RaqqSura.ttf": "alef-ar.fina.short=2+102|tah-ar.medi=1+758|hah-ar.init=0+703" + "only": "RaqqSura.ttf", + "input": "۝270", + "expectation": "endofayah-ar.10=0+1117|ayah.270=1+0", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "حعا", - "expectation": { - "default": "alef-ar.fina=2+101|_c.ain.medi.beh=1+66|ain-ar.medi=1+220|_c.hah.beh=0+7|hah-ar.init=0+703", - "RaqqSura.ttf": "alef-ar.fina=2+90|ain-ar.medi=1+202|hah-ar.init=0+703" + "only": "RaqqSura.ttf", + "input": "۝271", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "حكا", - "expectation": { - "default": "alef-ar.fina=2+101|kaf-ar.medi.alt=1@-5,0+753|_c.hah.dal=0+71|hah-ar.init=0@-71,0+632", - "RaqqSura.ttf": "alef-ar.fina=2+90|kaf-ar.medi=1@-5,0+753|hah-ar.init=0+703" + "only": "RaqqSura.ttf", + "input": "۝272", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "حلا", - "expectation": { - "default": "lam_alef-ar.fina=1+510|hah-ar.init=0@-57,0+646", - "RaqqSura.ttf": "lam_alef-ar.fina=1+522|hah-ar.init=0@-63,0+640" + "only": "RaqqSura.ttf", + "input": "۝273", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "حلن", - "expectation": { - "default": "dotabove-ar=2@-3,101+0|noonghunna-ar.fina=2+250|lam-ar.medi.round=1+95|_c.hah.beh=0+7|hah-ar.init=0+703", - "RaqqSura.ttf": "dotabove-ar=2@-3,90+0|noonghunna-ar.fina=2+250|lam-ar.medi.round=1+95|hah-ar.init=0+703" + "only": "RaqqSura.ttf", + "input": "۝274", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "حما", - "expectation": { - "default": "alef-ar.fina=2+101|_c.seen.beh=1+0|meem-ar.medi=1+380|_c.ain.meem=0@13,0+48|hah-ar.init=0@-39,0+664", - "RaqqSura.ttf": "alef-ar.fina=2+90|meem-ar.medi=1@-28,0+352|hah-ar.init=0@-120,0+583" + "only": "RaqqSura.ttf", + "input": "۝275", + "expectation": "endofayah-ar.05=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "حمم", - "expectation": { - "default": "meem-ar.fina.round=2+554|meem-ar.medi.round2=1+398|_c.ain.meem=0@8,0+43|hah-ar.init=0@-39,0+664", - "RaqqSura.ttf": "meem-ar.fina.round=2+554|meem-ar.medi.round2=1+398|hah-ar.init=0+703" + "only": "RaqqSura.ttf", + "input": "۝276", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "حها", - "expectation": { - "default": "alef-ar.fina=2+101|_c.feh.medi.beh=1+0|heh-ar.medi=1+357|_c.hah.beh=0+7|hah-ar.init=0+703", - "RaqqSura.ttf": "alef-ar.fina=2+90|heh-ar.medi=1@-26,0+328|hah-ar.init=0+703" + "only": "RaqqSura.ttf", + "input": "۝277", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "حهم", - "expectation": { - "default": "meem-ar.fina.round=2+554|heh-ar.medi.round=1+323|_c.hah.beh=0+7|hah-ar.init=0+703", - "RaqqSura.ttf": "meem-ar.fina.round=2+554|heh-ar.medi.round=1+320|hah-ar.init=0+703" + "only": "RaqqSura.ttf", + "input": "۝278", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "حير", - "expectation": { - "default": "reh-ar.fina=2+393|twodotsverticalbelow-ar=1@9,-167+0|behDotless-ar.medi=1+128|_c.hah.beh=0+7|hah-ar.init=0+703", - "RaqqSura.ttf": "reh-ar.fina=2+387|twodotsverticalbelow-ar=1@-19,-167+0|behDotless-ar.medi=1+100|hah-ar.init=0+703" + "only": "RaqqSura.ttf", + "input": "۝279", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "حيم", - "expectation": { - "default": "meem-ar.fina.round=2+554|twodotsverticalbelow-ar=1@-15,-137+0|behDotless-ar.medi.round=1+108|_c.hah.beh=0+7|hah-ar.init=0+703", - "RaqqSura.ttf": "meem-ar.fina.round=2+554|twodotsverticalbelow-ar=1@-20,-137+0|behDotless-ar.medi.round=1@-6,0+104|hah-ar.init=0+703" + "only": "RaqqSura.ttf", + "input": "۝27", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "حيو", - "expectation": { - "default": "waw-ar.fina=2+472|twodotsverticalbelow-ar=1@-1,-167+0|behDotless-ar.medi=1@-10,0+118|_c.hah.beh=0+7|hah-ar.init=0+703", - "RaqqSura.ttf": "waw-ar.fina=2+477|twodotsverticalbelow-ar=1@-29,-167+0|behDotless-ar.medi=1@-10,0+90|hah-ar.init=0+703" + "only": "RaqqSura.ttf", + "input": "۝280", + "expectation": "endofayah-ar.10=0+1117|ayah.280=1+0", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "حپر", - "expectation": { - "default": "reh-ar.fina=2+393|threedotsdownbelow-ar=1@9,-192+0|behDotless-ar.medi=1+128|_c.hah.beh=0+7|hah-ar.init=0+703", - "RaqqSura.ttf": "reh-ar.fina=2+387|threedotsdownbelow-ar=1@-19,-192+0|behDotless-ar.medi=1+100|hah-ar.init=0+703" + "only": "RaqqSura.ttf", + "input": "۝281", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "حپو", - "expectation": { - "default": "waw-ar.fina=2+472|threedotsdownbelow-ar=1@-1,-192+0|behDotless-ar.medi=1@-10,0+118|_c.hah.beh=0+7|hah-ar.init=0+703", - "RaqqSura.ttf": "waw-ar.fina=2+477|threedotsdownbelow-ar=1@-29,-192+0|behDotless-ar.medi=1@-10,0+90|hah-ar.init=0+703" + "only": "RaqqSura.ttf", + "input": "۝282", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "سبا", - "expectation": { - "default": "alef-ar.fina=2+101|dotbelow-ar=1@9,-110+0|_c.seen.beh=1+0|behDotless-ar.medi=1+128|_c.seen.beh=0+0|seen-ar.init=0+378", - "RaqqSura.ttf": "alef-ar.fina=2+90|dotbelow-ar=1@-19,-110+0|behDotless-ar.medi=1+100|seen-ar.init=0+345" + "only": "RaqqSura.ttf", + "input": "۝283", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "سبب", - "expectation": { - "default": "dotbelow-ar=2@834,-111+0|behDotless-ar.fina=2+984|dotbelow-ar=1@14,-110+0|_c.seen.beh=1+0|behDotless-ar.medi.high=1+128|_c.seen.beh=0+0|seen-ar.init=0+378", - "RaqqSura.ttf": "dotbelow-ar=2@834,-111+0|behDotless-ar.fina=2+984|dotbelow-ar=1@-13,-110+0|behDotless-ar.medi.high=1+100|seen-ar.init=0+345" + "only": "RaqqSura.ttf", + "input": "۝284", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "سبه", - "expectation": { - "default": "heh-ar.fina=2+339|dotbelow-ar=1@17,-110+0|_c.seen.beh=1+0|behDotless-ar.medi.med=1+128|_c.seen.beh=0+0|seen-ar.init=0+378", - "RaqqSura.ttf": "heh-ar.fina=2+336|dotbelow-ar=1@-13,-110+0|behDotless-ar.medi.med=1+100|seen-ar.init=0+345" + "only": "RaqqSura.ttf", + "input": "۝285", + "expectation": "endofayah-ar.05=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "سسا", - "expectation": { - "default": "alef-ar.fina=2+101|_c.seen.beh=1+0|seen-ar.medi=1+401|_c.seen.beh=0+0|seen-ar.init=0+378", - "RaqqSura.ttf": "alef-ar.fina=2+90|seen-ar.medi=1+345|seen-ar.init=0+345" + "only": "RaqqSura.ttf", + "input": "۝286", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "سسي", - "expectation": { - "default": "twodotsverticalbelow-ar=1@339,-337+0|seen_alefMaksura-ar.fina=1+343|_c.seen.beh=0+0|seen-ar.init=0+378", - "RaqqSura.ttf": "twodotsverticalbelow-ar=1@339,-337+0|seen_alefMaksura-ar.fina=1+343|seen-ar.init=0+345" + "only": "RaqqSura.ttf", + "input": "۝287", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "سضا", - "expectation": { - "default": "alef-ar.fina=2+101|dotabove-ar=1@310,247+0|_c.seen.beh=1+0|sad-ar.medi=1+758|seen-ar.init=0@-15,0+363", - "RaqqSura.ttf": "alef-ar.fina=2+90|dotabove-ar=1@310,247+0|sad-ar.medi=1+758|seen-ar.init=0@-15,0+330" + "only": "RaqqSura.ttf", + "input": "۝288", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "سطا", - "expectation": { - "default": "alef-ar.fina.short=2+102|_c.seen.beh=1+0|tah-ar.medi=1+758|seen-ar.init=0@-15,0+363", - "RaqqSura.ttf": "alef-ar.fina.short=2+102|tah-ar.medi=1+758|seen-ar.init=0@-15,0+330" + "only": "RaqqSura.ttf", + "input": "۝289", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "سعا", - "expectation": { - "default": "alef-ar.fina=2+101|_c.ain.medi.beh=1+66|ain-ar.medi=1+220|_c.seen.beh=0+0|seen-ar.init=0+378", - "RaqqSura.ttf": "alef-ar.fina=2+90|ain-ar.medi=1+202|seen-ar.init=0+345" + "only": "RaqqSura.ttf", + "input": "۝28", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "سكا", - "expectation": { - "default": "alef-ar.fina=2+101|kaf-ar.medi.alt=1@-5,0+753|seen-ar.init=0@-15,0+363", - "RaqqSura.ttf": "alef-ar.fina=2+90|kaf-ar.medi=1@-5,0+753|seen-ar.init=0@-15,0+330" + "only": "RaqqSura.ttf", + "input": "۝290", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "سلا", - "expectation": { - "default": "lam_alef-ar.fina=1+510|seen-ar.init=0+378", - "RaqqSura.ttf": "lam_alef-ar.fina=1+522|seen-ar.init=0+345" + "only": "RaqqSura.ttf", + "input": "۝291", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "سلن", - "expectation": { - "default": "dotabove-ar=2@-3,101+0|noonghunna-ar.fina=2+250|lam-ar.medi.round=1+95|_c.seen.beh=0+0|seen-ar.init=0+378", - "RaqqSura.ttf": "dotabove-ar=2@-3,90+0|noonghunna-ar.fina=2+250|lam-ar.medi.round=1+95|seen-ar.init=0+345" + "only": "RaqqSura.ttf", + "input": "۝292", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "سما", - "expectation": { - "default": "alef-ar.fina=2+101|_c.seen.beh=1+0|meem-ar.medi=1+380|_c.seen.meem=0@11,0+27|seen-ar.init=0@-36,0+342", - "RaqqSura.ttf": "alef-ar.fina=2+90|meem-ar.medi=1@-28,0+352|seen-ar.init=0+345" + "only": "RaqqSura.ttf", + "input": "۝293", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "سمم", - "expectation": { - "default": "meem-ar.fina.round=2+554|meem-ar.medi.round2=1+398|_c.seen.meem=0@7,0+23|seen-ar.init=0@-36,0+342", - "RaqqSura.ttf": "meem-ar.fina.round=2+554|meem-ar.medi.round2=1+398|seen-ar.init=0+345" + "only": "RaqqSura.ttf", + "input": "۝294", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "سها", - "expectation": { - "default": "alef-ar.fina=2+101|_c.feh.medi.beh=1+0|heh-ar.medi=1+357|_c.seen.beh=0+0|seen-ar.init=0+378", - "RaqqSura.ttf": "alef-ar.fina=2+90|heh-ar.medi=1@-26,0+328|seen-ar.init=0+345" + "only": "RaqqSura.ttf", + "input": "۝295", + "expectation": "endofayah-ar.05=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "سهم", - "expectation": { - "default": "meem-ar.fina.round=2+554|heh-ar.medi.round=1+323|_c.seen.beh=0+0|seen-ar.init=0+378", - "RaqqSura.ttf": "meem-ar.fina.round=2+554|heh-ar.medi.round=1+320|seen-ar.init=0+345" + "only": "RaqqSura.ttf", + "input": "۝296", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "سيء", - "expectation": { - "default": "hamza-ar=2+0|twodotsverticalbelow-ar=0@330,-337+0|seen_alefMaksura-ar=0+346", - "RaqqSura.ttf": "hamza-ar=2+0|twodotsverticalbelow-ar=0@330,-337+0|seen_alefMaksura-ar=0+346" + "only": "RaqqSura.ttf", + "input": "۝297", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "سيا", - "expectation": { - "default": "alef-ar.fina=2+101|twodotsverticalbelow-ar=1@9,-137+0|_c.seen.beh=1+0|behDotless-ar.medi=1+128|_c.seen.beh=0+0|seen-ar.init=0+378", - "RaqqSura.ttf": "alef-ar.fina=2+90|twodotsverticalbelow-ar=1@-19,-137+0|behDotless-ar.medi=1+100|seen-ar.init=0+345" + "only": "RaqqSura.ttf", + "input": "۝298", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "سيم", - "expectation": { - "default": "meem-ar.fina.round=2+554|twodotsverticalbelow-ar=1@-15,-137+0|behDotless-ar.medi.round=1+108|_c.seen.beh=0+0|seen-ar.init=0+378", - "RaqqSura.ttf": "meem-ar.fina.round=2+554|twodotsverticalbelow-ar=1@-20,-137+0|behDotless-ar.medi.round=1@-6,0+104|seen-ar.init=0+345" + "only": "RaqqSura.ttf", + "input": "۝299", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "شئِ", - "expectation": { - "default": "kasra-ar=0@122,-393+0|threedotshorizontalabove-ar.3=0@-35,167+0|seen_alefMaksura-ar=0+346", - "RaqqSura.ttf": "kasra-ar=0@122,-393+0|threedotshorizontalabove-ar.3=0@-35,167+0|seen_alefMaksura-ar=0+346" + "only": "RaqqSura.ttf", + "input": "۝29", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "ششش", - "expectation": { - "default": "threedotshorizontalabove-ar.4=2@6,222+0|seen-ar.fina=2+510|threedotshorizontalabove-ar.1=1@-1,174+0|_c.seen.beh=1+0|seen-ar.medi=1+401|threedotshorizontalabove-ar=0@3,169+0|_c.seen.beh=0+0|seen-ar.init=0+378", - "RaqqSura.ttf": "threedotshorizontalabove-ar.4=2@2,229+0|seen-ar.fina=2+484|threedotshorizontalabove-ar.1=1@-9,171+0|seen-ar.medi=1+345|threedotshorizontalabove-ar=0@-9,171+0|seen-ar.init=0+345" + "only": "RaqqSura.ttf", + "input": "۝300", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "شيق", - "expectation": { - "default": "twodotsverticalabove-ar=2@-62,265+0|qafDotless-ar.fina=2+373|twodotsverticalbelow-ar=1@159,-137+0|behDotless-ar.medi=1+128|threedotshorizontalabove-ar=0@3,169+0|_c.seen.beh=0+0|seen-ar.init=0+378", - "RaqqSura.ttf": "twodotsverticalabove-ar=2@-62,265+0|qafDotless-ar.fina=2+373|twodotsverticalbelow-ar=1@131,-137+0|behDotless-ar.medi=1+100|threedotshorizontalabove-ar=0@-9,171+0|seen-ar.init=0+345" + "only": "RaqqSura.ttf", + "input": "۝30", + "expectation": "endofayah-ar.10=0+1117|ayah.030=1+0", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "صبا", - "expectation": { - "default": "alef-ar.fina=2+101|dotbelow-ar=1@9,-110+0|_c.seen.beh=1+0|behDotless-ar.medi=1+128|_c.seen.beh=0+0|sad-ar.init=0+765", - "RaqqSura.ttf": "alef-ar.fina=2+90|dotbelow-ar=1@-19,-110+0|behDotless-ar.medi=1+100|sad-ar.init=0+765" + "only": "RaqqSura.ttf", + "input": "۝31", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "صسي", - "expectation": { - "default": "twodotsverticalbelow-ar=1@339,-337+0|seen_alefMaksura-ar.fina=1+343|_c.seen.beh=0+0|sad-ar.init=0+765", - "RaqqSura.ttf": "twodotsverticalbelow-ar=1@339,-337+0|seen_alefMaksura-ar.fina=1+343|sad-ar.init=0+765" + "only": "RaqqSura.ttf", + "input": "۝32", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "طبا", - "expectation": { - "default": "alef-ar.fina=2+101|dotbelow-ar=1@9,-110+0|_c.seen.beh=1+0|behDotless-ar.medi=1+128|_c.seen.beh=0+0|tah-ar.init=0+765", - "RaqqSura.ttf": "alef-ar.fina=2+90|dotbelow-ar=1@-19,-110+0|behDotless-ar.medi=1+100|tah-ar.init=0+765" + "only": "RaqqSura.ttf", + "input": "۝33", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "طحح", - "expectation": { - "default": "hah-ar.fina=2+417|hah-ar.medi.hah=1@0,115+109|tah-ar.init.hah2=0@0,7+765", - "RaqqSura.ttf": "hah-ar.fina=2+417|hah-ar.medi.hah=1@0,115+109|tah-ar.init.hah2=0@0,7+765" + "only": "RaqqSura.ttf", + "input": "۝34", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "طسي", - "expectation": { - "default": "twodotsverticalbelow-ar=1@339,-337+0|seen_alefMaksura-ar.fina=1+343|_c.seen.beh=0+0|tah-ar.init=0+765", - "RaqqSura.ttf": "twodotsverticalbelow-ar=1@339,-337+0|seen_alefMaksura-ar.fina=1+343|tah-ar.init=0+765" + "only": "RaqqSura.ttf", + "input": "۝35", + "expectation": "endofayah-ar.05=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "طلم", - "expectation": { - "default": "meem-ar.fina.round=2+554|lam-ar.medi.round.short=1@2,0+95|_c.seen.beh=0+0|tah-ar.init=0+765", - "RaqqSura.ttf": "meem-ar.fina.round=2+554|lam-ar.medi.round.short=1@2,0+95|tah-ar.init=0+765" + "only": "RaqqSura.ttf", + "input": "۝36", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "طلى", - "expectation": { - "default": "alefMaksura-ar.fina.tooth=2+9|lam-ar.medi.round.short=1@2,0+95|_c.seen.beh=0+0|tah-ar.init=0+765", - "RaqqSura.ttf": "lam_alefMaksura-ar.fina.short=1+110|tah-ar.init=0+765" + "only": "RaqqSura.ttf", + "input": "۝37", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "عبا", - "expectation": { - "default": "alef-ar.fina=2+101|dotbelow-ar=1@9,-110+0|_c.seen.beh=1+0|behDotless-ar.medi=1+128|_c.ain.init.beh=0+95|ain-ar.init=0@-50,0+640", - "RaqqSura.ttf": "alef-ar.fina=2+90|dotbelow-ar=1@-19,-110+0|behDotless-ar.medi=1+100|ain-ar.init=0+680" + "only": "RaqqSura.ttf", + "input": "۝38", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "عبب", - "expectation": { - "default": "dotbelow-ar=2@834,-111+0|behDotless-ar.fina=2+984|dotbelow-ar=1@14,-110+0|_c.seen.beh=1+0|behDotless-ar.medi.high=1+128|_c.ain.init.beh=0+95|ain-ar.init=0@-50,0+640", - "RaqqSura.ttf": "dotbelow-ar=2@834,-111+0|behDotless-ar.fina=2+984|dotbelow-ar=1@-13,-110+0|behDotless-ar.medi.high=1+100|ain-ar.init=0+680" + "only": "RaqqSura.ttf", + "input": "۝39", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "عبم", - "expectation": { - "default": "meem-ar.fina.round=2+554|dotbelow-ar=1@-15,-110+0|behDotless-ar.medi.round=1+108|_c.ain.init.beh=0+95|ain-ar.init=0@-50,0+640", - "RaqqSura.ttf": "meem-ar.fina.round=2+554|dotbelow-ar=1@-20,-110+0|behDotless-ar.medi.round=1@-6,0+104|ain-ar.init=0+680" + "only": "RaqqSura.ttf", + "input": "۝40", + "expectation": "endofayah-ar.10=0+1117|ayah.040=1+0", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "عبه", - "expectation": { - "default": "heh-ar.fina=2+339|dotbelow-ar=1@17,-110+0|_c.seen.beh=1+0|behDotless-ar.medi.med=1+128|_c.ain.init.beh=0+95|ain-ar.init=0@-50,0+640", - "RaqqSura.ttf": "heh-ar.fina=2+336|dotbelow-ar=1@-13,-110+0|behDotless-ar.medi.med=1+100|ain-ar.init=0+680" + "only": "RaqqSura.ttf", + "input": "۝41", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "عسا", - "expectation": { - "default": "alef-ar.fina=2+101|_c.seen.beh=1+0|seen-ar.medi=1+401|_c.ain.init.beh=0+95|ain-ar.init=0@-50,0+640", - "RaqqSura.ttf": "alef-ar.fina=2+90|seen-ar.medi.low=1+433|ain-ar.init=0+680" + "only": "RaqqSura.ttf", + "input": "۝42", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "عسي", - "expectation": { - "default": "twodotsverticalbelow-ar=1@339,-337+0|seen_alefMaksura-ar.fina=1+343|_c.ain.init.beh=0+95|ain-ar.init=0@-50,0+640", - "RaqqSura.ttf": "twodotsverticalbelow-ar=1@339,-337+0|seen_alefMaksura-ar.fina=1+343|ain-ar.init=0+680" + "only": "RaqqSura.ttf", + "input": "۝43", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "عضا", - "expectation": { - "default": "alef-ar.fina=2+101|dotabove-ar=1@310,247+0|_c.seen.beh=1+0|sad-ar.medi=1+758|_c.ain.dal=0+47|ain-ar.init=0+690", - "RaqqSura.ttf": "alef-ar.fina=2+90|dotabove-ar=1@310,247+0|sad-ar.medi=1+758|ain-ar.init=0+680" + "only": "RaqqSura.ttf", + "input": "۝44", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "عطا", - "expectation": { - "default": "alef-ar.fina.short=2+102|_c.seen.beh=1+0|tah-ar.medi=1+758|_c.ain.dal=0+47|ain-ar.init=0+690", - "RaqqSura.ttf": "alef-ar.fina.short=2+102|tah-ar.medi=1+758|ain-ar.init=0+680" + "only": "RaqqSura.ttf", + "input": "۝45", + "expectation": "endofayah-ar.05=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "ععا", - "expectation": { - "default": "alef-ar.fina=2+101|_c.ain.medi.beh=1+66|ain-ar.medi=1+220|_c.ain.init.beh=0+95|ain-ar.init=0@-50,0+640", - "RaqqSura.ttf": "alef-ar.fina=2+90|ain-ar.medi=1+202|ain-ar.init=0+680" + "only": "RaqqSura.ttf", + "input": "۝46", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "ععع", - "expectation": { - "default": "ain-ar.fina=2+267|_c.ain.medi.beh=1+66|ain-ar.medi=1+220|_c.ain.init.beh=0+95|ain-ar.init=0@-50,0+640", - "RaqqSura.ttf": "ain-ar.fina=2+262|ain-ar.medi=1+202|ain-ar.init=0+680" + "only": "RaqqSura.ttf", + "input": "۝47", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "عكا", - "expectation": { - "default": "alef-ar.fina=2+101|kaf-ar.medi.alt=1@-5,0+753|_c.ain.dal=0+47|ain-ar.init=0+690", - "RaqqSura.ttf": "alef-ar.fina=2+90|kaf-ar.medi=1@-5,0+753|ain-ar.init=0+680" + "only": "RaqqSura.ttf", + "input": "۝48", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "علا", - "expectation": { - "default": "lam_alef-ar.fina=1+510|ain-ar.init=0@-20,0+670", - "RaqqSura.ttf": "lam_alef-ar.fina=1+522|ain-ar.init=0@-11,0+669" + "only": "RaqqSura.ttf", + "input": "۝49", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "علج", - "expectation": { - "default": "dotbelow-ar=2@571,-122+0|hah-ar.fina=2+417|lam-ar.medi.hah1=1+125|_c.ain.init.beh=0@0,115+95|ain-ar.init=0@-50,115+640", - "RaqqSura.ttf": "dotbelow-ar=2@571,-122+0|hah-ar.fina=2+417|lam-ar.medi.hah1=1+125|ain-ar.init=0@0,115+680" + "only": "RaqqSura.ttf", + "input": "۝50", + "expectation": "endofayah-ar.10=0+1117|ayah.050=1+0", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "علل", - "expectation": { - "default": "lam-ar.fina.short=2+178|_c.seen.beh=1+0|lam-ar.medi=1+125|_c.ain.init.beh=0+95|ain-ar.init=0@-50,0+640", - "RaqqSura.ttf": "lam-ar.fina.short=2+178|lam-ar.medi=1+100|ain-ar.init=0+680" + "only": "RaqqSura.ttf", + "input": "۝51", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "علم", - "expectation": { - "default": "meem-ar.fina.round=2+554|lam-ar.medi.round=1+95|_c.ain.init.beh=0+95|ain-ar.init=0@-50,0+640", - "RaqqSura.ttf": "meem-ar.fina.round=2+554|lam-ar.medi.round=1+95|ain-ar.init=0+680" + "only": "RaqqSura.ttf", + "input": "۝52", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "علن", - "expectation": { - "default": "dotabove-ar=2@-3,101+0|noonghunna-ar.fina=2+250|lam-ar.medi.round=1+95|_c.ain.init.beh=0+95|ain-ar.init=0@-50,0+640", - "RaqqSura.ttf": "dotabove-ar=2@-3,90+0|noonghunna-ar.fina=2+250|lam-ar.medi.round=1+95|ain-ar.init=0+680" + "only": "RaqqSura.ttf", + "input": "۝53", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "على", - "expectation": { - "default": "alefMaksura-ar.fina.tooth=2+9|lam-ar.medi.round=1+95|_c.ain.init.beh=0+95|ain-ar.init=0@-50,0+640", - "RaqqSura.ttf": "lam_alefMaksura-ar.fina=1+110|ain-ar.init=0+680" + "only": "RaqqSura.ttf", + "input": "۝54", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "علي", - "expectation": { - "default": "twodotsverticalbelow-ar=2@311,-329+0|alefMaksura-ar.fina.tooth=2+9|lam-ar.medi.round=1+95|_c.ain.init.beh=0+95|ain-ar.init=0@-50,0+640", - "RaqqSura.ttf": "twodotsverticalbelow-ar=1@311,-329+0|lam_alefMaksura-ar.fina=1+110|ain-ar.init=0+680" + "only": "RaqqSura.ttf", + "input": "۝55", + "expectation": "endofayah-ar.05=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "عما", - "expectation": { - "default": "alef-ar.fina=2+101|_c.seen.beh=1+0|meem-ar.medi=1+380|_c.ain.meem=0@13,0+48|ain-ar.init=0+690", - "RaqqSura.ttf": "alef-ar.fina=2+90|meem-ar.medi=1@-28,0+352|ain-ar.init=0+680" + "only": "RaqqSura.ttf", + "input": "۝56", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "عمم", - "expectation": { - "default": "meem-ar.fina.round=2+554|meem-ar.medi.round2=1+398|_c.ain.meem=0@8,0+43|ain-ar.init=0+690", - "RaqqSura.ttf": "meem-ar.fina.round=2+554|meem-ar.medi.round2=1+398|ain-ar.init=0+680" + "only": "RaqqSura.ttf", + "input": "۝57", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "عها", - "expectation": { - "default": "alef-ar.fina=2+101|_c.feh.medi.beh=1+0|heh-ar.medi=1+357|_c.ain.init.beh=0+95|ain-ar.init=0@-50,0+640", - "RaqqSura.ttf": "alef-ar.fina=2+90|heh-ar.medi=1@-26,0+328|ain-ar.init=0+680" + "only": "RaqqSura.ttf", + "input": "۝58", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "عهم", - "expectation": { - "default": "meem-ar.fina.round=2+554|heh-ar.medi.round=1+323|_c.ain.init.beh=0+95|ain-ar.init=0@-50,0+640", - "RaqqSura.ttf": "meem-ar.fina.round=2+554|heh-ar.medi.round=1+320|ain-ar.init=0+680" + "only": "RaqqSura.ttf", + "input": "۝59", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "عيم", - "expectation": { - "default": "meem-ar.fina.round=2+554|twodotsverticalbelow-ar=1@-15,-137+0|behDotless-ar.medi.round=1+108|_c.ain.init.beh=0+95|ain-ar.init=0@-50,0+640", - "RaqqSura.ttf": "meem-ar.fina.round=2+554|twodotsverticalbelow-ar=1@-20,-137+0|behDotless-ar.medi.round=1@-6,0+104|ain-ar.init=0+680" + "only": "RaqqSura.ttf", + "input": "۝60", + "expectation": "endofayah-ar.10=0+1117|ayah.060=1+0", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "غغغ", - "expectation": { - "default": "dotabove-ar=2@-35,195+0|ain-ar.fina=2+267|dotabove-ar=1@-8,223+0|_c.ain.medi.beh=1+66|ain-ar.medi=1+220|dotabove-ar=0@56,266+0|_c.ain.init.beh=0+95|ain-ar.init=0@-50,0+640", - "RaqqSura.ttf": "dotabove-ar=2@-30,195+0|ain-ar.fina=2+262|dotabove-ar=1@-74,223+0|ain-ar.medi=1+202|dotabove-ar=0@-24,295+0|ain-ar.init=0+680" + "only": "RaqqSura.ttf", + "input": "۝61", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "ــد", - "expectation": { - "default": "dal-ar.fina=2+875|kashida-ar=1+100|kashida-ar=0+100", - "RaqqSura.ttf": "dal-ar.fina=2+875|kashida-ar=1+100|kashida-ar=0+100" + "only": "RaqqSura.ttf", + "input": "۝62", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "فبا", - "expectation": { - "default": "alef-ar.fina=2+101|dotbelow-ar=1@9,-110+0|_c.seen.beh=1+0|behDotless-ar.medi=1+128|dotabove-ar=0@-1,373+0|_c.feh.init.beh=0+174|fehDotless-ar.init=0@-114,0+220", - "RaqqSura.ttf": "alef-ar.fina=2+90|dotbelow-ar=1@-19,-110+0|behDotless-ar.medi=1+100|dotabove-ar=0@-61,373+0|fehDotless-ar.init=0+334" + "only": "RaqqSura.ttf", + "input": "۝63", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "فبب", - "expectation": { - "default": "dotbelow-ar=2@834,-111+0|behDotless-ar.fina=2+984|dotbelow-ar=1@14,-110+0|_c.seen.beh=1+0|behDotless-ar.medi.high=1+128|dotabove-ar=0@-1,373+0|_c.feh.init.beh=0+174|fehDotless-ar.init=0@-114,0+220", - "RaqqSura.ttf": "dotbelow-ar=2@834,-111+0|behDotless-ar.fina=2+984|dotbelow-ar=1@-13,-110+0|behDotless-ar.medi.high=1+100|dotabove-ar=0@-61,373+0|fehDotless-ar.init=0+334" + "only": "RaqqSura.ttf", + "input": "۝64", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "فبم", - "expectation": { - "default": "meem-ar.fina.round=2+554|dotbelow-ar=1@-15,-110+0|behDotless-ar.medi.round=1+108|dotabove-ar=0@-1,373+0|_c.feh.init.beh=0+174|fehDotless-ar.init=0@-114,0+220", - "RaqqSura.ttf": "meem-ar.fina.round=2+554|dotbelow-ar=1@-20,-110+0|behDotless-ar.medi.round=1@-6,0+104|dotabove-ar=0@-61,373+0|fehDotless-ar.init=0+334" + "only": "RaqqSura.ttf", + "input": "۝65", + "expectation": "endofayah-ar.05=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "فبه", - "expectation": { - "default": "heh-ar.fina=2+339|dotbelow-ar=1@17,-110+0|_c.seen.beh=1+0|behDotless-ar.medi.med=1+128|dotabove-ar=0@-1,373+0|_c.feh.init.beh=0+174|fehDotless-ar.init=0@-114,0+220", - "RaqqSura.ttf": "heh-ar.fina=2+336|dotbelow-ar=1@-13,-110+0|behDotless-ar.medi.med=1+100|dotabove-ar=0@-61,373+0|fehDotless-ar.init=0+334" + "only": "RaqqSura.ttf", + "input": "۝66", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "فتح", - "expectation": { - "default": "hah-ar.fina=2+417|twodotsverticalabove-ar.beh=1@-22,417+0|behDotless-ar.medi=1@0,115+128|dotabove-ar=0@-1,488+0|_c.feh.init.beh=0@0,115+174|fehDotless-ar.init=0@-114,115+220", - "RaqqSura.ttf": "hah-ar.fina=2+417|twodotsverticalabove-ar.beh=1@-45,420+0|behDotless-ar.medi=1@0,115+100|dotabove-ar=0@-61,488+0|fehDotless-ar.init=0@0,115+334" + "only": "RaqqSura.ttf", + "input": "۝67", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "فحا", - "expectation": { - "default": "alef-ar.fina=2+101|_c.hah.beh=1+7|hah-ar.medi=1+133|dotabove-ar=0@-56,495+0|fehDotless-ar.init.hah=0@11,122+479", - "RaqqSura.ttf": "alef-ar.fina=2+90|hah-ar.medi=1+133|dotabove-ar=0@-56,495+0|fehDotless-ar.init.hah=0@11,122+479" + "only": "RaqqSura.ttf", + "input": "۝68", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "فحح", - "expectation": { - "default": "hah-ar.fina=2+417|hah-ar.medi.hah=1@0,115+109|dotabove-ar=0@-56,610+0|fehDotless-ar.init.hah=0@11,237+479", - "RaqqSura.ttf": "hah-ar.fina=2+417|hah-ar.medi.hah=1@0,115+109|dotabove-ar=0@-56,610+0|fehDotless-ar.init.hah=0@11,237+479" + "only": "RaqqSura.ttf", + "input": "۝69", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "فسا", - "expectation": { - "default": "alef-ar.fina=2+101|_c.seen.beh=1+0|seen-ar.medi=1+401|dotabove-ar=0@-1,373+0|_c.feh.init.beh=0+174|fehDotless-ar.init=0@-114,0+220", - "RaqqSura.ttf": "alef-ar.fina=2+90|seen-ar.medi=1+345|dotabove-ar=0@-61,373+0|fehDotless-ar.init=0+334" + "only": "RaqqSura.ttf", + "input": "۝70", + "expectation": "endofayah-ar.10=0+1117|ayah.070=1+0", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "فسي", - "expectation": { - "default": "twodotsverticalbelow-ar=1@339,-337+0|seen_alefMaksura-ar.fina=1+343|dotabove-ar=0@-1,373+0|_c.feh.init.beh=0+174|fehDotless-ar.init=0@-114,0+220", - "RaqqSura.ttf": "twodotsverticalbelow-ar=1@339,-337+0|seen_alefMaksura-ar.fina=1+343|dotabove-ar=0@-61,373+0|fehDotless-ar.init=0+334" + "only": "RaqqSura.ttf", + "input": "۝71", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "فصا", - "expectation": { - "default": "alef-ar.fina=2+101|_c.seen.beh=1+0|sad-ar.medi=1+758|dotabove-ar=0@-41,373+0|_c.feh.init.dal=0+137|fehDotless-ar.init=0@-117,0+217", - "RaqqSura.ttf": "alef-ar.fina=2+90|sad-ar.medi=1+758|dotabove-ar=0@-61,373+0|fehDotless-ar.init=0+334" + "only": "RaqqSura.ttf", + "input": "۝72", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "فطا", - "expectation": { - "default": "alef-ar.fina.short=2+102|_c.seen.beh=1+0|tah-ar.medi=1+758|dotabove-ar=0@-41,373+0|_c.feh.init.dal=0+137|fehDotless-ar.init=0@-117,0+217", - "RaqqSura.ttf": "alef-ar.fina.short=2+102|tah-ar.medi=1+758|dotabove-ar=0@-61,373+0|fehDotless-ar.init=0+334" + "only": "RaqqSura.ttf", + "input": "۝73", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "فعا", - "expectation": { - "default": "alef-ar.fina=2+101|_c.ain.medi.beh=1+66|ain-ar.medi=1+220|dotabove-ar=0@-1,373+0|_c.feh.init.beh=0+174|fehDotless-ar.init=0@-114,0+220", - "RaqqSura.ttf": "alef-ar.fina=2+90|ain-ar.medi=1+202|dotabove-ar=0@-61,373+0|fehDotless-ar.init=0+334" + "only": "RaqqSura.ttf", + "input": "۝74", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "ففا", - "expectation": { - "default": "alef-ar.fina=2+101|dotabove-ar=1@1,329+0|_c.feh.medi.beh=1+0|fehDotless-ar.medi=1+377|dotabove-ar=0@-4,373+0|_c.feh.init.beh=0@-3,0+171|fehDotless-ar.init=0@-114,0+220", - "RaqqSura.ttf": "alef-ar.fina=2+90|dotabove-ar=1@1,329+0|fehDotless-ar.medi=1+377|dotabove-ar=0@-61,373+0|fehDotless-ar.init=0+334" + "only": "RaqqSura.ttf", + "input": "۝75", + "expectation": "endofayah-ar.05=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "فكا", - "expectation": { - "default": "alef-ar.fina=2+101|kaf-ar.medi.alt=1@-5,0+753|dotabove-ar=0@-41,373+0|_c.feh.init.dal=0+137|fehDotless-ar.init=0@-117,0+217", - "RaqqSura.ttf": "alef-ar.fina=2+90|kaf-ar.medi=1@-5,0+753|dotabove-ar=0@-61,373+0|fehDotless-ar.init=0+334" + "only": "RaqqSura.ttf", + "input": "۝76", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "فلآ", - "expectation": { - "default": "madda-ar=1@149,582+0|lam_alef-ar.fina=1+510|dotabove-ar=0@-91,373+0|fehDotless-ar.init=0@-30,0+304", - "RaqqSura.ttf": "madda-ar=1@203,582+0|lam_alef-ar.fina=1+522|dotabove-ar=0@-91,373+0|fehDotless-ar.init=0@-30,0+304" + "only": "RaqqSura.ttf", + "input": "۝77", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "فلأ", - "expectation": { - "default": "fatha-ar=1@335,570+0|lam_alef-ar.fina=1+510|dotabove-ar=0@-91,373+0|fehDotless-ar.init=0@-30,0+304", - "RaqqSura.ttf": "fatha-ar=1@389,570+0|lam_alef-ar.fina=1+522|dotabove-ar=0@-91,373+0|fehDotless-ar.init=0@-30,0+304" + "only": "RaqqSura.ttf", + "input": "۝78", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "فلا", - "expectation": { - "default": "lam_alef-ar.fina=1+510|dotabove-ar=0@-91,373+0|fehDotless-ar.init=0@-30,0+304", - "RaqqSura.ttf": "lam_alef-ar.fina=1+522|dotabove-ar=0@-91,373+0|fehDotless-ar.init=0@-30,0+304" + "only": "RaqqSura.ttf", + "input": "۝79", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "فما", - "expectation": { - "default": "alef-ar.fina=2+101|_c.seen.beh=1+0|meem-ar.medi=1+380|dotabove-ar=0@-26,373+0|_c.feh.init.dal=0@15,0+152|fehDotless-ar.init=0@-117,0+217", - "RaqqSura.ttf": "alef-ar.fina=2+90|meem-ar.medi=1@-28,0+352|dotabove-ar=0@-61,373+0|fehDotless-ar.init=0+334" + "only": "RaqqSura.ttf", + "input": "۝80", + "expectation": "endofayah-ar.10=0+1117|ayah.080=1+0", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "فمم", - "expectation": { - "default": "meem-ar.fina.round=2+554|meem-ar.medi.round2=1+398|dotabove-ar=0@-32,373+0|_c.feh.init.dal=0@9,0+146|fehDotless-ar.init=0@-117,0+217", - "RaqqSura.ttf": "meem-ar.fina.round=2+554|meem-ar.medi.round2=1+398|dotabove-ar=0@-61,373+0|fehDotless-ar.init=0+334" + "only": "RaqqSura.ttf", + "input": "۝81", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "فمن", - "expectation": { - "default": "dotabove-ar=2@-3,101+0|noonghunna-ar.fina=2+250|meem-ar.medi.round2=1+398|dotabove-ar=0@-32,373+0|_c.feh.init.dal=0@9,0+146|fehDotless-ar.init=0@-117,0+217", - "RaqqSura.ttf": "dotabove-ar=2@-3,90+0|noonghunna-ar.fina=2+250|meem-ar.medi.round2=1+398|dotabove-ar=0@-61,373+0|fehDotless-ar.init=0+334" + "only": "RaqqSura.ttf", + "input": "۝82", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "فها", - "expectation": { - "default": "alef-ar.fina=2+101|_c.feh.medi.beh=1+0|heh-ar.medi=1+357|dotabove-ar=0@-1,373+0|_c.feh.init.beh=0+174|fehDotless-ar.init=0@-114,0+220", - "RaqqSura.ttf": "alef-ar.fina=2+90|heh-ar.medi=1@-26,0+328|dotabove-ar=0@-61,373+0|fehDotless-ar.init=0+334" + "only": "RaqqSura.ttf", + "input": "۝83", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "فهم", - "expectation": { - "default": "meem-ar.fina.round=2+554|heh-ar.medi.round=1+323|dotabove-ar=0@-1,373+0|_c.feh.init.beh=0+174|fehDotless-ar.init=0@-114,0+220", - "RaqqSura.ttf": "meem-ar.fina.round=2+554|heh-ar.medi.round=1+320|dotabove-ar=0@-61,373+0|fehDotless-ar.init=0+334" + "only": "RaqqSura.ttf", + "input": "۝84", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "فهو", - "expectation": { - "default": "waw-ar.fina.round=2+492|heh-ar.medi.round=1+323|dotabove-ar=0@-1,373+0|_c.feh.init.beh=0+174|fehDotless-ar.init=0@-114,0+220", - "RaqqSura.ttf": "waw-ar.fina.round=2+492|heh-ar.medi.round=1+320|dotabove-ar=0@-61,373+0|fehDotless-ar.init=0+334" + "only": "RaqqSura.ttf", + "input": "۝85", + "expectation": "endofayah-ar.05=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "قال", - "expectation": { - "default": "lam-ar=2+186|twodotsverticalabove-ar=0@523,402+0|fehDotless_alef-ar=0@400,0+960", - "RaqqSura.ttf": "lam-ar.short=2+186|twodotsverticalabove-ar=0@106,402+0|fehDotless_alef-ar=0@-17,0+543" + "only": "RaqqSura.ttf", + "input": "۝86", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "قلم", - "expectation": { - "default": "meem-ar.fina.round=2+554|lam-ar.medi.round=1+95|twodotsverticalabove-ar=0@-31,381+0|_c.feh.init.beh=0+174|fehDotless-ar.init=0@-114,0+220", - "RaqqSura.ttf": "meem-ar.fina.round=2+554|lam-ar.medi.round=1+95|twodotsverticalabove-ar=0@-91,381+0|fehDotless-ar.init=0+334" + "only": "RaqqSura.ttf", + "input": "۝87", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "كسي", - "expectation": { - "default": "twodotsverticalbelow-ar=1@339,-337+0|seen_alefMaksura-ar.fina=1+343|kaf-ar.init.alt=0@-5,0+760", - "RaqqSura.ttf": "twodotsverticalbelow-ar=1@339,-337+0|seen_alefMaksura-ar.fina=1+343|kaf-ar.init=0@-5,0+760" + "only": "RaqqSura.ttf", + "input": "۝88", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "كـا", - "expectation": { - "default": "alef-ar.fina.kashida=2+219|kashida-ar=1+100|kaf-ar.init=0+765", - "RaqqSura.ttf": "alef-ar.fina.kashida=2+198|kashida-ar=1+100|kaf-ar.init=0+765" + "only": "RaqqSura.ttf", + "input": "۝89", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "كلا", - "expectation": { - "default": "lam_alef-ar.fina=1+510|kaf-ar.init.alt=0@-40,0+725", - "RaqqSura.ttf": "lam_alef-ar.fina=1+522|kaf-ar.init=0@-40,0+725" + "only": "RaqqSura.ttf", + "input": "۝90", + "expectation": "endofayah-ar.10=0+1117|ayah.090=1+0", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "كما", - "expectation": { - "default": "alef-ar.fina=2+101|_c.seen.beh=1+0|meem-ar.medi=1+380|kaf-ar.init.alt=0@-5,0+760", - "RaqqSura.ttf": "alef-ar.fina=2+90|meem-ar.medi=1@-28,0+352|kaf-ar.init=0@-5,0+760" + "only": "RaqqSura.ttf", + "input": "۝91", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "كمم", - "expectation": { - "default": "meem-ar.fina.round=2+554|meem-ar.medi.round2=1+398|kaf-ar.init.alt=0@-8,0+757", - "RaqqSura.ttf": "meem-ar.fina.round=2+554|meem-ar.medi.round2=1+398|kaf-ar.init=0@-8,0+757" + "only": "RaqqSura.ttf", + "input": "۝92", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "كًا", - "expectation": { - "default": "alef-ar.fina=2+101|fathatan-ar=0@44,279+0|kaf-ar.init.alt=0@-5,0+760", - "RaqqSura.ttf": "alef-ar.fina=2+90|fathatan-ar=0@44,279+0|kaf-ar.init=0@-5,0+760" + "only": "RaqqSura.ttf", + "input": "۝93", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "لأَ", - "expectation": { - "default": "fatha-ar=0@352,599+0|lam_alef-ar=0+542", - "RaqqSura.ttf": "fatha-ar=0@352,599+0|lam_alef-ar=0+542" + "only": "RaqqSura.ttf", + "input": "۝94", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "لأُ", - "expectation": { - "default": "damma-ar=0@-140,-56+0|lam_alef-ar=0+542", - "RaqqSura.ttf": "damma-ar=0@-140,-56+0|lam_alef-ar=0+542" + "only": "RaqqSura.ttf", + "input": "۝95", + "expectation": "endofayah-ar.05=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "لإِ", - "expectation": { - "default": "kasra-ar=0@16,-159+0|lam_alef-ar=0+542", - "RaqqSura.ttf": "kasra-ar=0@16,-159+0|lam_alef-ar=0+542" + "only": "RaqqSura.ttf", + "input": "۝96", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "لبا", - "expectation": { - "default": "alef-ar.fina=2+101|dotbelow-ar=1@9,-110+0|_c.seen.beh=1+0|behDotless-ar.medi=1+128|_c.seen.beh=0+0|lam-ar.init=0+123", - "RaqqSura.ttf": "alef-ar.fina=2+90|dotbelow-ar=1@-19,-110+0|behDotless-ar.medi=1+100|lam-ar.init=0+123" + "only": "RaqqSura.ttf", + "input": "۝97", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "لحد", - "expectation": { - "default": "dal-ar.fina=2+875|_c.hah.dal=1+71|hah-ar.medi.alt=1@-71,0+64|lam-ar.init.hah1.alt=0@63,5+578", - "RaqqSura.ttf": "dal-ar.fina=2+875|hah-ar.medi.alt=1+135|lam-ar.init.hah1.alt=0@63,5+578" + "only": "RaqqSura.ttf", + "input": "۝98", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "لحم", - "expectation": { - "default": "meem-ar.fina=2+567|_c.ain.meem=1+35|hah-ar.medi.alt=1@-39,0+96|lam-ar.init.hah1.alt=0@63,5+578", - "RaqqSura.ttf": "meem-ar.fina=2+567|hah-ar.medi.alt=1+135|lam-ar.init.hah1.alt=0@63,5+578" + "only": "RaqqSura.ttf", + "input": "۝99", + "expectation": "endofayah-ar=0+400", + "direction": "ltr", + "variations": { + "MSHQ": 10.0 } }, { - "input": "لحے", - "expectation": { - "default": "yehbarree-ar.fina=2+297|_c.ain.yeh=1@-5,0+10|hah-ar.medi.alt=1@-40,0+95|lam-ar.init.hah1.alt=0@63,5+578", - "RaqqSura.ttf": "yehbarree-ar.fina=2+297|hah-ar.medi.alt=1+135|lam-ar.init.hah1.alt=0@63,5+578" + "only": "RaqqSura.ttf", + "input": "آ", + "expectation": "madda-ar=0@-137,551+0|alef-ar=0+642", + "variations": { + "MSHQ": 10.0 } }, { - "input": "لسا", - "expectation": { - "default": "alef-ar.fina=2+101|_c.seen.beh=1+0|seen-ar.medi=1+401|_c.seen.beh=0+0|lam-ar.init=0+123", - "RaqqSura.ttf": "alef-ar.fina=2+90|seen-ar.medi=1+345|lam-ar.init=0+123" + "only": "RaqqSura.ttf", + "input": "أ", + "expectation": "fatha-ar=0@73,547+0|alef-ar=0+642", + "variations": { + "MSHQ": 10.0 } }, { - "input": "لسب", - "expectation": { - "default": "dotbelow-ar=2@834,-111+0|behDotless-ar.fina=2+984|_c.seen.beh=1+0|seen-ar.medi=1+401|_c.seen.beh=0+0|lam-ar.init=0+123", - "RaqqSura.ttf": "dotbelow-ar=2@834,-111+0|behDotless-ar.fina=2+984|seen-ar.medi=1+345|lam-ar.init=0+123" + "only": "RaqqSura.ttf", + "input": "ؤ", + "expectation": "hamzaabove-ar=0@-5,191+0|waw-ar=0+516", + "variations": { + "MSHQ": 10.0 } }, { - "input": "لسد", - "expectation": { - "default": "dal-ar.fina=2+875|seen-ar.medi=1@-15,0+386|_c.seen.beh=0+0|lam-ar.init=0+123", - "RaqqSura.ttf": "dal-ar.fina=2+875|seen-ar.medi=1@-15,0+330|lam-ar.init=0+123" + "only": "RaqqSura.ttf", + "input": "إ", + "expectation": "kasra-ar=0@298,-177+0|alef-ar=0+642", + "variations": { + "MSHQ": 10.0 } }, { - "input": "لسر", - "expectation": { - "default": "reh-ar.fina=2+393|seen-ar.medi=1+401|_c.seen.beh=0+0|lam-ar.init=0+123", - "RaqqSura.ttf": "reh-ar.fina=2+387|seen-ar.medi=1+345|lam-ar.init=0+123" + "only": "RaqqSura.ttf", + "input": "ئ", + "expectation": "fatha-ar=0@56,276+0|alefMaksura-ar=0+393", + "variations": { + "MSHQ": 10.0 } }, { - "input": "لسس", - "expectation": { - "default": "seen-ar.fina=2+510|_c.seen.beh=1+0|seen-ar.medi=1+401|_c.seen.beh=0+0|lam-ar.init=0+123", - "RaqqSura.ttf": "seen-ar.fina=2+484|seen-ar.medi=1+345|lam-ar.init=0+123" + "only": "RaqqSura.ttf", + "input": "ا", + "expectation": "alef-ar=0+642", + "variations": { + "MSHQ": 10.0 } }, { - "input": "لسض", - "expectation": { - "default": "dotabove-ar=2@398,247+0|sad-ar.fina=2+876|seen-ar.medi=1@-15,0+386|_c.seen.beh=0+0|lam-ar.init=0+123", - "RaqqSura.ttf": "dotabove-ar=2@398,247+0|sad-ar.fina=2+876|seen-ar.medi=1@-15,0+330|lam-ar.init=0+123" + "only": "RaqqSura.ttf", + "input": "ب", + "expectation": "dotbelow-ar=0@959,-59+0|behDotless-ar=0+1007", + "variations": { + "MSHQ": 10.0 } }, { - "input": "لسط", - "expectation": { - "default": "tah-ar.fina=2+798|seen-ar.medi=1@-15,0+386|_c.seen.beh=0+0|lam-ar.init=0+123", - "RaqqSura.ttf": "tah-ar.fina=2+798|seen-ar.medi=1@-15,0+330|lam-ar.init=0+123" + "only": "RaqqSura.ttf", + "input": "ش", + "expectation": "threedotshorizontalabove-ar.4=0@3,224+0|seen-ar=0+496", + "variations": { + "MSHQ": 10.0 } }, { - "input": "لسع", - "expectation": { - "default": "ain-ar.fina=2+267|_c.seen.beh=1+0|seen-ar.medi=1+401|_c.seen.beh=0+0|lam-ar.init=0+123", - "RaqqSura.ttf": "ain-ar.fina=2+262|seen-ar.medi=1+345|lam-ar.init=0+123" + "only": "RaqqSura.ttf", + "input": "ع", + "expectation": "ain-ar=0+995", + "variations": { + "MSHQ": 10.0 } }, { - "input": "لسف", - "expectation": { - "default": "dotabove-ar=2@609,319+0|fehDotless-ar.fina=2+997|_c.seen.beh=1+0|seen-ar.medi=1+401|_c.seen.beh=0+0|lam-ar.init=0+123", - "RaqqSura.ttf": "dotabove-ar=2@609,319+0|fehDotless-ar.fina=2+997|seen-ar.medi=1+345|lam-ar.init=0+123" + "only": "RaqqSura.ttf", + "input": "غ", + "expectation": "dotabove-ar=0@293,290+0|ain-ar=0+995", + "variations": { + "MSHQ": 10.0 } }, { - "input": "لسق", - "expectation": { - "default": "twodotsverticalabove-ar=2@-62,265+0|qafDotless-ar.fina=2+373|_c.seen.meem=1@7,0+23|seen-ar.medi=1@-36,0+365|_c.seen.beh=0+0|lam-ar.init=0+123", - "RaqqSura.ttf": "twodotsverticalabove-ar=2@-62,265+0|qafDotless-ar.fina=2+373|seen-ar.medi=1+345|lam-ar.init=0+123" + "only": "RaqqSura.ttf", + "input": "ف", + "expectation": "dotabove-ar=0@607,355+0|fehDotless-ar=0+1020", + "variations": { + "MSHQ": 10.0 } }, { - "input": "لسك", - "expectation": { - "default": "kaf-ar.fina=2+889|seen-ar.medi=1@-15,0+386|_c.seen.beh=0+0|lam-ar.init=0+123", - "RaqqSura.ttf": "kaf-ar.fina=2+889|seen-ar.medi=1@-15,0+330|lam-ar.init=0+123" + "only": "RaqqSura.ttf", + "input": "أَ", + "expectation": "fatha-ar=0@73,547+0|alef-ar=0+642", + "variations": { + "MSHQ": 10.0 } }, { - "input": "لسل", - "expectation": { - "default": "lam-ar.fina=2+177|_c.seen.beh=1+0|seen-ar.medi=1+401|_c.seen.beh=0+0|lam-ar.init=0+123", - "RaqqSura.ttf": "lam-ar.fina=2+177|seen-ar.medi=1+345|lam-ar.init=0+123" + "only": "RaqqSura.ttf", + "input": "أُ", + "expectation": "damma-ar=0@-137,-15+0|alef-ar=0+642", + "variations": { + "MSHQ": 10.0 } }, { - "input": "لسم", - "expectation": { - "default": "meem-ar.fina=2+567|_c.seen.meem=1+16|seen-ar.medi=1@-36,0+365|_c.seen.beh=0+0|lam-ar.init=0+123", - "RaqqSura.ttf": "meem-ar.fina=2+567|seen-ar.medi=1+345|lam-ar.init=0+123" + "only": "RaqqSura.ttf", + "input": "ؤَ", + "expectation": "fatha-ar=0@213,366+0|waw-ar=0+516", + "variations": { + "MSHQ": 10.0 } }, { - "input": "لسن", - "expectation": { - "default": "dotabove-ar=2@-3,101+0|noonghunna-ar.fina=2+250|_c.hah.noon=1+-20|seen-ar.medi=1+401|_c.seen.beh=0+0|lam-ar.init=0+123", - "RaqqSura.ttf": "dotabove-ar=2@-3,90+0|noonghunna-ar.fina=2+250|seen-ar.medi=1+345|lam-ar.init=0+123" + "only": "RaqqSura.ttf", + "input": "ؤُ", + "expectation": "damma-ar=0@-110,-21+0|waw-ar=0+516", + "variations": { + "MSHQ": 10.0 } }, { - "input": "لسه", - "expectation": { - "default": "heh-ar.fina=2+339|_c.seen.beh=1+0|seen-ar.medi=1+401|_c.seen.beh=0+0|lam-ar.init=0+123", - "RaqqSura.ttf": "heh-ar.fina=2+336|seen-ar.medi=1+345|lam-ar.init=0+123" + "only": "RaqqSura.ttf", + "input": "ؤِ", + "expectation": "kasra-ar=0@191,-179+0|waw-ar=0+516", + "variations": { + "MSHQ": 10.0 } }, { - "input": "لسو", - "expectation": { - "default": "waw-ar.fina=2+472|seen-ar.medi=1+401|_c.seen.beh=0+0|lam-ar.init=0+123", - "RaqqSura.ttf": "waw-ar.fina=2+477|seen-ar.medi=1+345|lam-ar.init=0+123" + "only": "RaqqSura.ttf", + "input": "إِ", + "expectation": "kasra-ar=0@298,-177+0|alef-ar=0+642", + "variations": { + "MSHQ": 10.0 } }, { - "input": "لسى", - "expectation": { - "default": "seen_alefMaksura-ar.fina=1+343|_c.seen.beh=0+0|lam-ar.init=0+123", - "RaqqSura.ttf": "seen_alefMaksura-ar.fina=1+343|lam-ar.init=0+123" + "only": "RaqqSura.ttf", + "input": "ئم", + "expectation": "meem-ar.fina=1+567|fatha-ar=0@-32,339+0|behDotless-ar.init=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "لسي", - "expectation": { - "default": "twodotsverticalbelow-ar=1@339,-337+0|seen_alefMaksura-ar.fina=1+343|_c.seen.beh=0+0|lam-ar.init=0+123", - "RaqqSura.ttf": "twodotsverticalbelow-ar=1@339,-337+0|seen_alefMaksura-ar.fina=1+343|lam-ar.init=0+123" + "only": "RaqqSura.ttf", + "input": "ئُ", + "expectation": "damma-ar=0@-152,-75+0|alefMaksura-ar=0+393", + "variations": { + "MSHQ": 10.0 } }, { - "input": "لسے", - "expectation": { - "default": "yehbarree-ar.fina=2+297|seen-ar.medi=1@-32,0+369|_c.seen.beh=0+0|lam-ar.init=0+353", - "RaqqSura.ttf": "yehbarree-ar.fina=2+297|seen-ar.medi=1@-32,0+313|lam-ar.init=0+443" + "only": "RaqqSura.ttf", + "input": "ئِ", + "expectation": "kasra-ar=0@155,-289+0|alefMaksura-ar=0+393", + "variations": { + "MSHQ": 10.0 } }, { - "input": "لصے", - "expectation": { - "default": "yehbarree-ar.fina=2+297|sad-ar.medi=1+758|lam-ar.init=0@-23,0+100", - "RaqqSura.ttf": "yehbarree-ar.fina=2+297|sad-ar.medi=1+758|lam-ar.init=0@-23,0+100" + "only": "RaqqSura.ttf", + "input": "اء", + "expectation": "madda-ar=1@-137,551+0|alef-ar=0+642", + "variations": { + "MSHQ": 10.0 } }, { - "input": "لطم", - "expectation": { - "default": "meem-ar.fina=2+567|tah-ar.medi=1+758|lam-ar.init=0@-23,0+100", - "RaqqSura.ttf": "meem-ar.fina=2+567|tah-ar.medi=1+758|lam-ar.init=0@-23,0+100" + "only": "RaqqSura.ttf", + "input": "اَ", + "expectation": "fatha-ar=0@73,547+0|alef-ar=0+642", + "variations": { + "MSHQ": 10.0 } }, { - "input": "لطے", - "expectation": { - "default": "yehbarree-ar.fina=2+297|tah-ar.medi=1+758|lam-ar.init=0@-23,0+100", - "RaqqSura.ttf": "yehbarree-ar.fina=2+297|tah-ar.medi=1+758|lam-ar.init=0@-23,0+100" + "only": "RaqqSura.ttf", + "input": "اُ", + "expectation": "damma-ar=0@-137,-15+0|alef-ar=0+642", + "variations": { + "MSHQ": 10.0 } }, { - "input": "لعے", - "expectation": { - "default": "yehbarree-ar.fina=2+297|_c.ain.yeh=1@-5,0+10|ain-ar.medi=1+220|_c.seen.beh=0+0|lam-ar.init=0+533", - "RaqqSura.ttf": "yehbarree-ar.fina=2+297|ain-ar.medi=1+202|lam-ar.init=0+583" + "only": "RaqqSura.ttf", + "input": "با", + "expectation": "alef-ar.fina=1+90|dotbelow-ar=0@72,-46+0|behDotless-ar.init=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "لفے", - "expectation": { - "default": "yehbarree-ar.fina=2+297|dotabove-ar=1@-46,329+0|_c.feh.medi.reh=1@-24,0+23|fehDotless-ar.medi=1@-70,0+307|_c.seen.beh=0+0|lam-ar.init=0+343", - "RaqqSura.ttf": "yehbarree-ar.fina=2+297|dotabove-ar=1@1,329+0|fehDotless-ar.medi=1+377|lam-ar.init=0+413" + "only": "RaqqSura.ttf", + "input": "بب", + "expectation": "dotbelow-ar=1@834,-111+0|behDotless-ar.fina=1+984|dotbelow-ar=0@51,-46+0|behDotless-ar.init.high=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "لكے", - "expectation": { - "default": "yehbarree-ar.fina=2+297|kaf-ar.medi.alt=1@-21,0+737|lam-ar.init=0@-23,0+100", - "RaqqSura.ttf": "yehbarree-ar.fina=2+297|kaf-ar.medi=1@-21,0+737|lam-ar.init=0@-23,0+100" + "only": "RaqqSura.ttf", + "input": "بح", + "expectation": "hah-ar.fina.alt=1+407|dotbelow-ar=0@167,180+0|behDotless-ar.init.hah=0@63,0+572", + "variations": { + "MSHQ": 10.0 } }, { - "input": "للے", - "expectation": { - "default": "yehbarree-ar.fina=2+297|lam-ar.medi.short=1+123|_c.seen.beh=0+0|lam-ar.init=0+633", - "RaqqSura.ttf": "yehbarree-ar.fina=2+297|lam-ar.medi.short=1+93|lam-ar.init=0+683" + "only": "RaqqSura.ttf", + "input": "بش", + "expectation": "threedotshorizontalabove-ar.4=1@2,229+0|seen-ar.fina=1+484|dotbelow-ar=0@51,-46+0|behDotless-ar.init.high=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "لما", - "expectation": { - "default": "alef-ar.fina=2+101|_c.seen.beh=1+0|meem-ar.medi=1+380|lam-ar.init=0@-25,0+98", - "RaqqSura.ttf": "alef-ar.fina=2+90|meem-ar.medi=1@-28,0+352|lam-ar.init=0+123" + "only": "RaqqSura.ttf", + "input": "بع", + "expectation": "ain-ar.fina=1+262|dotbelow-ar=0@51,-46+0|behDotless-ar.init.high=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "لمح", - "expectation": { - "default": "hah-ar.fina=2+417|meem-ar.medi=1@0,115+380|lam-ar.init.hah1=0@-25,0+98", - "RaqqSura.ttf": "hah-ar.fina=2+417|meem-ar.medi=1@-28,115+352|lam-ar.init.hah1=0+123" + "only": "RaqqSura.ttf", + "input": "بل", + "expectation": "lam-ar.fina=1+177|dotbelow-ar=0@72,-46+0|behDotless-ar.init=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "لمم", - "expectation": { - "default": "meem-ar.fina.round=2+554|meem-ar.medi.round2=1+398|lam-ar.init=0@-22,0+101", - "RaqqSura.ttf": "meem-ar.fina.round=2+554|meem-ar.medi.round2=1+398|lam-ar.init=0@-22,0+101" + "only": "RaqqSura.ttf", + "input": "به", + "expectation": "heh-ar.fina=1+336|dotbelow-ar=0@51,-46+0|behDotless-ar.init.high=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "لمے", - "expectation": { - "default": "yehbarree-ar.fina=2+297|meem-ar.medi=1+380|lam-ar.init=0@-25,0+358", - "RaqqSura.ttf": "yehbarree-ar.fina=2+297|meem-ar.medi=1@-28,0+352|lam-ar.init=0+403" + "only": "RaqqSura.ttf", + "input": "بي", + "expectation": "twodotsverticalbelow-ar=1@386,-339+0|alefMaksura-ar.fina.wide=1+267|dotbelow-ar=0@72,-46+0|behDotless-ar.init=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "لهے", - "expectation": { - "default": "yehbarree-ar.fina=2+297|heh-ar.medi=1+357|_c.seen.beh=0+0|lam-ar.init=0+403", - "RaqqSura.ttf": "yehbarree-ar.fina=2+297|heh-ar.medi=1+354|lam-ar.init=0+433" + "only": "RaqqSura.ttf", + "input": "تا", + "expectation": "alef-ar.fina=1+90|twodotsverticalabove-ar.vert=0@-18,318+0|behDotless-ar.init=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "لىے", - "expectation": { - "default": "yehbarree-ar.fina=2+297|behDotless-ar.medi=1+128|_c.seen.beh=0+0|lam-ar.init=0+633", - "RaqqSura.ttf": "yehbarree-ar.fina=2+297|behDotless-ar.medi=1+100|lam-ar.init=0+683" + "only": "RaqqSura.ttf", + "input": "ثا", + "expectation": "alef-ar.fina=1+90|threedotsupabove-ar.vert=0@-10,324+0|behDotless-ar.init=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "ليس", - "expectation": { - "default": "seen-ar.fina.low=2+487|twodotsverticalbelow-ar=1@17,-137+0|_c.seen.beh=1+0|behDotless-ar.medi.med=1+128|_c.seen.beh=0+0|lam-ar.init=0+123", - "RaqqSura.ttf": "seen-ar.fina=2+484|twodotsverticalbelow-ar=1@-13,-137+0|behDotless-ar.medi.high=1+100|lam-ar.init=0+123" + "only": "RaqqSura.ttf", + "input": "جج", + "expectation": "dotbelow-ar=1@571,-122+0|hah-ar.fina=1+417|dotbelow-ar=0@400,-24+0|hah-ar.init.hah=0@0,115+579", + "variations": { + "MSHQ": 10.0 } }, { - "input": "متا", - "expectation": { - "default": "alef-ar.fina=2+101|twodotsverticalabove-ar.vert.beh=1@5,298+0|_c.seen.beh=1+0|behDotless-ar.medi=1+128|_c.seen.beh=0+0|meem-ar.init=0+425", - "RaqqSura.ttf": "alef-ar.fina=2+90|twodotsverticalabove-ar.vert.beh=1@-18,301+0|behDotless-ar.medi=1+100|meem-ar.init=0+425" + "only": "RaqqSura.ttf", + "input": "جح", + "expectation": "hah-ar.fina=1+417|dotbelow-ar=0@400,-24+0|hah-ar.init.hah=0@0,115+579", + "variations": { + "MSHQ": 10.0 } }, { - "input": "مثا", - "expectation": { - "default": "alef-ar.fina=2+101|threedotsupabove-ar.vert.beh=1@5,298+0|_c.seen.beh=1+0|behDotless-ar.medi=1+128|_c.seen.beh=0+0|meem-ar.init=0+425", - "RaqqSura.ttf": "alef-ar.fina=2+90|threedotsupabove-ar.vert.beh=1@-18,301+0|behDotless-ar.medi=1+100|meem-ar.init=0+425" + "only": "RaqqSura.ttf", + "input": "حا", + "expectation": "alef-ar.fina=1+90|hah-ar.init=0+703", + "variations": { + "MSHQ": 10.0 } }, { - "input": "مثل", - "expectation": { - "default": "lam-ar.fina=2+177|threedotsupabove-ar.vert.beh=1@5,298+0|_c.seen.beh=1+0|behDotless-ar.medi=1+128|_c.seen.beh=0+0|meem-ar.init=0+425", - "RaqqSura.ttf": "lam-ar.fina=2+177|threedotsupabove-ar.vert.beh=1@-18,301+0|behDotless-ar.medi=1+100|meem-ar.init=0+425" + "only": "RaqqSura.ttf", + "input": "حب", + "expectation": "dotbelow-ar=1@834,-111+0|behDotless-ar.fina=1+984|hah-ar.init=0+703", + "variations": { + "MSHQ": 10.0 } }, { - "input": "مسي", - "expectation": { - "default": "twodotsverticalbelow-ar=1@339,-337+0|seen_alefMaksura-ar.fina=1+343|_c.seen.beh=0+0|meem-ar.init=0+425", - "RaqqSura.ttf": "twodotsverticalbelow-ar=1@339,-337+0|seen_alefMaksura-ar.fina=1+343|meem-ar.init=0+425" + "only": "RaqqSura.ttf", + "input": "حح", + "expectation": "hah-ar.fina=1+417|hah-ar.init.hah=0@0,115+579", + "variations": { + "MSHQ": 10.0 } }, { - "input": "ملى", - "expectation": { - "default": "alefMaksura-ar.fina.tooth=2+9|lam-ar.medi.round=1+95|_c.seen.beh=0+0|meem-ar.init=0+425", - "RaqqSura.ttf": "lam_alefMaksura-ar.fina=1+110|meem-ar.init=0+425" + "only": "RaqqSura.ttf", + "input": "حد", + "expectation": "dal-ar.fina=1+875|hah-ar.init=0+703", + "variations": { + "MSHQ": 10.0 } }, { - "input": "مما", - "expectation": { - "default": "alef-ar.fina=2+101|_c.seen.beh=1+0|meem-ar.medi.round=1+425|meem-ar.init.round=0+398", - "RaqqSura.ttf": "alef-ar.fina=2+90|meem-ar.medi.round=1+425|meem-ar.init.round=0+398" + "only": "RaqqSura.ttf", + "input": "حر", + "expectation": "reh-ar.fina=1+387|hah-ar.init=0+703", + "variations": { + "MSHQ": 10.0 } }, { - "input": "ممح", - "expectation": { - "default": "hah-ar.fina=2+417|meem-ar.medi.round=1@0,115+425|meem-ar.init.round=0@0,115+398", - "RaqqSura.ttf": "hah-ar.fina=2+417|meem-ar.medi.round=1@0,115+425|meem-ar.init.round=0@0,115+398" + "only": "RaqqSura.ttf", + "input": "حس", + "expectation": "seen-ar.fina.low=1+470|hah-ar.init=0+703", + "variations": { + "MSHQ": 10.0 } }, { - "input": "منه", - "expectation": { - "default": "heh-ar.fina=2+339|dotabove-ar.beh=1@2,343+0|_c.seen.beh=1+0|behDotless-ar.medi.med=1+128|_c.seen.beh=0+0|meem-ar.init=0+425", - "RaqqSura.ttf": "heh-ar.fina=2+336|dotabove-ar.beh=1@-15,336+0|behDotless-ar.medi.med=1+100|meem-ar.init=0+425" + "only": "RaqqSura.ttf", + "input": "حض", + "expectation": "dotabove-ar=1@398,247+0|sad-ar.fina=1+876|hah-ar.init=0+703", + "variations": { + "MSHQ": 10.0 } }, { - "input": "مُل", - "expectation": { - "default": "lam-ar.fina=2+177|damma-ar=0@-62,92+0|_c.seen.beh=0+0|meem-ar.init=0+425", - "RaqqSura.ttf": "lam-ar.fina=2+177|damma-ar=0@-62,92+0|meem-ar.init=0+425" + "only": "RaqqSura.ttf", + "input": "حط", + "expectation": "tah-ar.fina=1+798|hah-ar.init=0+703", + "variations": { + "MSHQ": 10.0 } }, { - "input": "نسا", - "expectation": { - "default": "alef-ar.fina=2+101|_c.seen.beh=1+0|seen-ar.medi.low=1+411|dotabove-ar=0@-2,339+0|_c.seen.beh=0+0|behDotless-ar.init.med=0+130", - "RaqqSura.ttf": "alef-ar.fina=2+90|seen-ar.medi=1+345|dotabove-ar.beh=0@-15,380+0|behDotless-ar.init.high=0+100" + "only": "RaqqSura.ttf", + "input": "حع", + "expectation": "ain-ar.fina=1+262|hah-ar.init=0+703", + "variations": { + "MSHQ": 10.0 } }, { - "input": "نسب", - "expectation": { - "default": "dotbelow-ar=2@834,-111+0|behDotless-ar.fina=2+984|_c.seen.beh=1+0|seen-ar.medi.low=1+411|dotabove-ar=0@-2,339+0|_c.seen.beh=0+0|behDotless-ar.init.med=0+130", - "RaqqSura.ttf": "dotbelow-ar=2@834,-111+0|behDotless-ar.fina=2+984|seen-ar.medi=1+345|dotabove-ar.beh=0@-15,380+0|behDotless-ar.init.high=0+100" + "only": "RaqqSura.ttf", + "input": "حف", + "expectation": "dotabove-ar=1@609,319+0|fehDotless-ar.fina=1+997|hah-ar.init=0+703", + "variations": { + "MSHQ": 10.0 } }, { - "input": "نسد", - "expectation": { - "default": "dal-ar.fina=2+875|seen-ar.medi.low=1@-15,0+396|dotabove-ar=0@-2,339+0|_c.seen.beh=0+0|behDotless-ar.init.med=0+130", - "RaqqSura.ttf": "dal-ar.fina=2+875|seen-ar.medi=1@-15,0+330|dotabove-ar.beh=0@-15,380+0|behDotless-ar.init.high=0+100" + "only": "RaqqSura.ttf", + "input": "حق", + "expectation": "twodotsverticalabove-ar=1@-62,265+0|qafDotless-ar.fina=1+373|hah-ar.init=0+703", + "variations": { + "MSHQ": 10.0 } }, { - "input": "نسر", - "expectation": { - "default": "reh-ar.fina=2+393|seen-ar.medi.low=1+411|dotabove-ar=0@-2,339+0|_c.seen.beh=0+0|behDotless-ar.init.med=0+130", - "RaqqSura.ttf": "reh-ar.fina=2+387|seen-ar.medi=1+345|dotabove-ar.beh=0@-15,380+0|behDotless-ar.init.high=0+100" + "only": "RaqqSura.ttf", + "input": "حك", + "expectation": "kaf-ar.fina=1+889|hah-ar.init=0+703", + "variations": { + "MSHQ": 10.0 } }, { - "input": "نسس", - "expectation": { - "default": "seen-ar.fina=2+510|_c.seen.beh=1+0|seen-ar.medi.low=1+411|dotabove-ar=0@-2,339+0|_c.seen.beh=0+0|behDotless-ar.init.med=0+130", - "RaqqSura.ttf": "seen-ar.fina=2+484|seen-ar.medi=1+345|dotabove-ar.beh=0@-15,380+0|behDotless-ar.init.high=0+100" + "only": "RaqqSura.ttf", + "input": "حل", + "expectation": "lam-ar.fina=1+177|hah-ar.init=0+703", + "variations": { + "MSHQ": 10.0 } }, { - "input": "نسض", - "expectation": { - "default": "dotabove-ar=2@398,247+0|sad-ar.fina=2+876|seen-ar.medi.low=1@-15,0+396|dotabove-ar=0@-2,339+0|_c.seen.beh=0+0|behDotless-ar.init.med=0+130", - "RaqqSura.ttf": "dotabove-ar=2@398,247+0|sad-ar.fina=2+876|seen-ar.medi=1@-15,0+330|dotabove-ar.beh=0@-15,380+0|behDotless-ar.init.high=0+100" + "only": "RaqqSura.ttf", + "input": "حم", + "expectation": "meem-ar.fina=1+567|hah-ar.init=0+703", + "variations": { + "MSHQ": 10.0 } }, { - "input": "نسط", - "expectation": { - "default": "tah-ar.fina=2+798|seen-ar.medi.low=1@-15,0+396|dotabove-ar=0@-2,339+0|_c.seen.beh=0+0|behDotless-ar.init.med=0+130", - "RaqqSura.ttf": "tah-ar.fina=2+798|seen-ar.medi=1@-15,0+330|dotabove-ar.beh=0@-15,380+0|behDotless-ar.init.high=0+100" + "only": "RaqqSura.ttf", + "input": "حن", + "expectation": "dotabove-ar=1@-3,90+0|noonghunna-ar.fina=1+250|hah-ar.init=0+703", + "variations": { + "MSHQ": 10.0 } }, { - "input": "نسع", - "expectation": { - "default": "ain-ar.fina=2+267|_c.seen.beh=1+0|seen-ar.medi.low=1+411|dotabove-ar=0@-2,339+0|_c.seen.beh=0+0|behDotless-ar.init.med=0+130", - "RaqqSura.ttf": "ain-ar.fina=2+262|seen-ar.medi=1+345|dotabove-ar.beh=0@-15,380+0|behDotless-ar.init.high=0+100" + "only": "RaqqSura.ttf", + "input": "حه", + "expectation": "heh-ar.fina=1+336|hah-ar.init=0+703", + "variations": { + "MSHQ": 10.0 } }, { - "input": "نسف", - "expectation": { - "default": "dotabove-ar=2@609,319+0|fehDotless-ar.fina=2+997|_c.seen.beh=1+0|seen-ar.medi.low=1+411|dotabove-ar=0@-2,339+0|_c.seen.beh=0+0|behDotless-ar.init.med=0+130", - "RaqqSura.ttf": "dotabove-ar=2@609,319+0|fehDotless-ar.fina=2+997|seen-ar.medi=1+345|dotabove-ar.beh=0@-15,380+0|behDotless-ar.init.high=0+100" + "only": "RaqqSura.ttf", + "input": "حو", + "expectation": "waw-ar.fina=1+477|hah-ar.init=0+703", + "variations": { + "MSHQ": 10.0 } }, { - "input": "نسق", - "expectation": { - "default": "twodotsverticalabove-ar=2@-62,265+0|qafDotless-ar.fina=2+373|_c.seen.meem=1@7,0+23|seen-ar.medi.low=1@-36,0+375|dotabove-ar=0@-2,339+0|_c.seen.beh=0+0|behDotless-ar.init.med=0+130", - "RaqqSura.ttf": "twodotsverticalabove-ar=2@-62,265+0|qafDotless-ar.fina=2+373|seen-ar.medi=1+345|dotabove-ar.beh=0@-15,380+0|behDotless-ar.init.high=0+100" + "only": "RaqqSura.ttf", + "input": "حى", + "expectation": "alefMaksura-ar.fina=1+282|hah-ar.init=0+703", + "variations": { + "MSHQ": 10.0 } }, { - "input": "نسك", - "expectation": { - "default": "kaf-ar.fina=2+889|seen-ar.medi.low=1@-15,0+396|dotabove-ar=0@-2,339+0|_c.seen.beh=0+0|behDotless-ar.init.med=0+130", - "RaqqSura.ttf": "kaf-ar.fina=2+889|seen-ar.medi=1@-15,0+330|dotabove-ar.beh=0@-15,380+0|behDotless-ar.init.high=0+100" + "only": "RaqqSura.ttf", + "input": "حے", + "expectation": "yehbarree-ar.fina.baseline=1+297|hah-ar.init=0@0,110+763", + "variations": { + "MSHQ": 10.0 } }, { - "input": "نسل", - "expectation": { - "default": "lam-ar.fina=2+177|_c.seen.beh=1+0|seen-ar.medi.low=1+411|dotabove-ar=0@-2,339+0|_c.seen.beh=0+0|behDotless-ar.init.med=0+130", - "RaqqSura.ttf": "lam-ar.fina=2+177|seen-ar.medi=1+345|dotabove-ar.beh=0@-15,380+0|behDotless-ar.init.high=0+100" + "only": "RaqqSura.ttf", + "input": "دَ", + "expectation": "fatha-ar=0@200,280+0|dal-ar=0+876", + "variations": { + "MSHQ": 10.0 } }, { - "input": "نسم", - "expectation": { - "default": "meem-ar.fina=2+567|_c.seen.meem=1+16|seen-ar.medi.low=1@-36,0+375|dotabove-ar=0@-2,339+0|_c.seen.beh=0+0|behDotless-ar.init.med=0+130", - "RaqqSura.ttf": "meem-ar.fina=2+567|seen-ar.medi=1+345|dotabove-ar.beh=0@-15,380+0|behDotless-ar.init.high=0+100" + "only": "RaqqSura.ttf", + "input": "سا", + "expectation": "alef-ar.fina=1+90|seen-ar.init=0+345", + "variations": { + "MSHQ": 10.0 } }, { - "input": "نسن", - "expectation": { - "default": "dotabove-ar=2@-3,101+0|noonghunna-ar.fina=2+250|_c.hah.noon=1+-20|seen-ar.medi.low=1+411|dotabove-ar=0@-2,339+0|_c.seen.beh=0+0|behDotless-ar.init.med=0+130", - "RaqqSura.ttf": "dotabove-ar=2@-3,90+0|noonghunna-ar.fina=2+250|seen-ar.medi=1+345|dotabove-ar.beh=0@-15,380+0|behDotless-ar.init.high=0+100" + "only": "RaqqSura.ttf", + "input": "سب", + "expectation": "dotbelow-ar=1@834,-111+0|behDotless-ar.fina=1+984|seen-ar.init=0+345", + "variations": { + "MSHQ": 10.0 } }, { - "input": "نسه", - "expectation": { - "default": "heh-ar.fina=2+339|_c.seen.beh=1+0|seen-ar.medi.low=1+411|dotabove-ar=0@-2,339+0|_c.seen.beh=0+0|behDotless-ar.init.med=0+130", - "RaqqSura.ttf": "heh-ar.fina=2+336|seen-ar.medi=1+345|dotabove-ar.beh=0@-15,380+0|behDotless-ar.init.high=0+100" + "only": "RaqqSura.ttf", + "input": "سح", + "expectation": "hah-ar.fina=1+417|seen-ar.init=0@0,115+465", + "variations": { + "MSHQ": 10.0 } }, { - "input": "نسو", - "expectation": { - "default": "waw-ar.fina=2+472|seen-ar.medi.low=1+411|dotabove-ar=0@-2,339+0|_c.seen.beh=0+0|behDotless-ar.init.med=0+130", - "RaqqSura.ttf": "waw-ar.fina=2+477|seen-ar.medi=1+345|dotabove-ar.beh=0@-15,380+0|behDotless-ar.init.high=0+100" + "only": "RaqqSura.ttf", + "input": "سد", + "expectation": "dal-ar.fina=1+875|seen-ar.init=0@-15,0+330", + "variations": { + "MSHQ": 10.0 } }, { - "input": "نسى", - "expectation": { - "default": "seen_alefMaksura-ar.fina=1+343|dotabove-ar.beh=0@-9,392+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", - "RaqqSura.ttf": "seen_alefMaksura-ar.fina=1+343|dotabove-ar.beh=0@-15,380+0|behDotless-ar.init.high=0+100" + "only": "RaqqSura.ttf", + "input": "سر", + "expectation": "reh-ar.fina=1+387|seen-ar.init=0+345", + "variations": { + "MSHQ": 10.0 } }, { - "input": "نسے", - "expectation": { - "default": "yehbarree-ar.fina=2+297|seen-ar.medi.low=1@-32,0+379|dotabove-ar=0@-2,339+0|_c.seen.beh=0+0|behDotless-ar.init.med=0+360", - "RaqqSura.ttf": "yehbarree-ar.fina=2+297|seen-ar.medi=1@-32,0+313|dotabove-ar.beh=0@-15,380+0|behDotless-ar.init.high=0+420" + "only": "RaqqSura.ttf", + "input": "سس", + "expectation": "seen-ar.fina=1+484|seen-ar.init=0+345", + "variations": { + "MSHQ": 10.0 } }, { - "input": "نشا", - "expectation": { - "default": "alef-ar.fina=2+101|threedotshorizontalabove-ar.2=1@0,125+0|_c.seen.beh=1+0|seen-ar.medi.low=1+411|dotabove-ar=0@-2,339+0|_c.seen.beh=0+0|behDotless-ar.init.med=0+130", - "RaqqSura.ttf": "alef-ar.fina=2+90|threedotshorizontalabove-ar.1=1@-9,171+0|seen-ar.medi=1+345|dotabove-ar.beh=0@-15,380+0|behDotless-ar.init.high=0+100" + "only": "RaqqSura.ttf", + "input": "سض", + "expectation": "dotabove-ar=1@398,247+0|sad-ar.fina=1+876|seen-ar.init=0@-15,0+330", + "variations": { + "MSHQ": 10.0 } }, { - "input": "نعا", - "expectation": { - "default": "alef-ar.fina=2+101|_c.ain.medi.beh=1+66|ain-ar.medi=1+220|dotabove-ar.beh=0@-9,392+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", - "RaqqSura.ttf": "alef-ar.fina=2+90|ain-ar.medi=1+202|dotabove-ar.beh=0@-15,380+0|behDotless-ar.init.high=0+100" + "only": "RaqqSura.ttf", + "input": "سط", + "expectation": "tah-ar.fina=1+798|seen-ar.init=0@-15,0+330", + "variations": { + "MSHQ": 10.0 } }, { - "input": "نعب", - "expectation": { - "default": "dotbelow-ar=2@834,-111+0|behDotless-ar.fina=2+984|_c.ain.medi.beh=1+66|ain-ar.medi=1+220|dotabove-ar.beh=0@-9,392+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", - "RaqqSura.ttf": "dotbelow-ar=2@834,-111+0|behDotless-ar.fina=2+984|ain-ar.medi=1+202|dotabove-ar.beh=0@-15,380+0|behDotless-ar.init.high=0+100" + "only": "RaqqSura.ttf", + "input": "سع", + "expectation": "ain-ar.fina=1+262|seen-ar.init=0+345", + "variations": { + "MSHQ": 10.0 } }, { - "input": "نعد", - "expectation": { - "default": "dal-ar.fina=2+875|_c.ain.dal=1+47|ain-ar.medi=1+220|dotabove-ar.beh=0@-9,392+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", - "RaqqSura.ttf": "dal-ar.fina=2+875|ain-ar.medi=1+202|dotabove-ar.beh=0@-15,380+0|behDotless-ar.init.high=0+100" + "only": "RaqqSura.ttf", + "input": "سف", + "expectation": "dotabove-ar=1@609,319+0|fehDotless-ar.fina=1+997|seen-ar.init=0+345", + "variations": { + "MSHQ": 10.0 } }, { - "input": "نعر", - "expectation": { - "default": "reh-ar.fina=2+393|_c.ain.medi.reh=1+7|ain-ar.medi=1+220|dotabove-ar.beh=0@-9,392+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", - "RaqqSura.ttf": "reh-ar.fina=2+387|ain-ar.medi=1+202|dotabove-ar.beh=0@-15,380+0|behDotless-ar.init.high=0+100" + "only": "RaqqSura.ttf", + "input": "سق", + "expectation": "twodotsverticalabove-ar=1@-62,265+0|qafDotless-ar.fina=1+373|seen-ar.init=0+345", + "variations": { + "MSHQ": 10.0 } }, { - "input": "نعس", - "expectation": { - "default": "seen-ar.fina=2+510|_c.ain.medi.beh=1+66|ain-ar.medi=1+220|dotabove-ar.beh=0@-9,392+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", - "RaqqSura.ttf": "seen-ar.fina=2+484|ain-ar.medi=1+202|dotabove-ar.beh=0@-15,380+0|behDotless-ar.init.high=0+100" + "only": "RaqqSura.ttf", + "input": "سك", + "expectation": "kaf-ar.fina=1+889|seen-ar.init=0@-15,0+330", + "variations": { + "MSHQ": 10.0 } }, { - "input": "نعض", - "expectation": { - "default": "dotabove-ar=2@398,247+0|sad-ar.fina=2+876|_c.ain.dal=1+47|ain-ar.medi=1+220|dotabove-ar.beh=0@-9,392+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", - "RaqqSura.ttf": "dotabove-ar=2@398,247+0|sad-ar.fina=2+876|ain-ar.medi=1+202|dotabove-ar.beh=0@-15,380+0|behDotless-ar.init.high=0+100" + "only": "RaqqSura.ttf", + "input": "سل", + "expectation": "lam-ar.fina=1+177|seen-ar.init=0+345", + "variations": { + "MSHQ": 10.0 } }, { - "input": "نعط", - "expectation": { - "default": "tah-ar.fina=2+798|_c.ain.dal=1+47|ain-ar.medi=1+220|dotabove-ar.beh=0@-9,392+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", - "RaqqSura.ttf": "tah-ar.fina=2+798|ain-ar.medi=1+202|dotabove-ar.beh=0@-15,380+0|behDotless-ar.init.high=0+100" + "only": "RaqqSura.ttf", + "input": "سم", + "expectation": "meem-ar.fina=1+567|seen-ar.init=0+345", + "variations": { + "MSHQ": 10.0 } }, { - "input": "نعع", - "expectation": { - "default": "ain-ar.fina=2+267|_c.ain.medi.beh=1+66|ain-ar.medi=1+220|dotabove-ar.beh=0@-9,392+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", - "RaqqSura.ttf": "ain-ar.fina=2+262|ain-ar.medi=1+202|dotabove-ar.beh=0@-15,380+0|behDotless-ar.init.high=0+100" + "only": "RaqqSura.ttf", + "input": "سن", + "expectation": "dotabove-ar=1@-3,90+0|noonghunna-ar.fina=1+250|seen-ar.init=0+345", + "variations": { + "MSHQ": 10.0 } }, { - "input": "نعف", - "expectation": { - "default": "dotabove-ar=2@609,319+0|fehDotless-ar.fina=2+997|_c.ain.medi.beh=1@2,0+68|ain-ar.medi=1+220|dotabove-ar.beh=0@-9,392+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", - "RaqqSura.ttf": "dotabove-ar=2@609,319+0|fehDotless-ar.fina=2+997|ain-ar.medi=1+202|dotabove-ar.beh=0@-15,380+0|behDotless-ar.init.high=0+100" + "only": "RaqqSura.ttf", + "input": "سه", + "expectation": "heh-ar.fina=1+336|seen-ar.init=0+345", + "variations": { + "MSHQ": 10.0 } }, { - "input": "نعق", - "expectation": { - "default": "twodotsverticalabove-ar=2@-62,265+0|qafDotless-ar.fina=2+373|_c.ain.meem=1@8,0+43|ain-ar.medi=1+220|dotabove-ar.beh=0@-9,392+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", - "RaqqSura.ttf": "twodotsverticalabove-ar=2@-62,265+0|qafDotless-ar.fina=2+373|ain-ar.medi=1+202|dotabove-ar.beh=0@-15,380+0|behDotless-ar.init.high=0+100" + "only": "RaqqSura.ttf", + "input": "سو", + "expectation": "waw-ar.fina=1+477|seen-ar.init=0+345", + "variations": { + "MSHQ": 10.0 } }, { - "input": "نعك", - "expectation": { - "default": "kaf-ar.fina=2+889|_c.ain.dal=1+47|ain-ar.medi=1+220|dotabove-ar.beh=0@-9,392+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", - "RaqqSura.ttf": "kaf-ar.fina=2+889|ain-ar.medi=1+202|dotabove-ar.beh=0@-15,380+0|behDotless-ar.init.high=0+100" + "only": "RaqqSura.ttf", + "input": "سى", + "expectation": "seen_alefMaksura-ar=0+346", + "variations": { + "MSHQ": 10.0 } }, { - "input": "نعل", - "expectation": { - "default": "lam-ar.fina=2+177|_c.ain.medi.beh=1+66|ain-ar.medi=1+220|dotabove-ar.beh=0@-9,392+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", - "RaqqSura.ttf": "lam-ar.fina=2+177|ain-ar.medi=1+202|dotabove-ar.beh=0@-15,380+0|behDotless-ar.init.high=0+100" + "only": "RaqqSura.ttf", + "input": "سي", + "expectation": "twodotsverticalbelow-ar=0@330,-337+0|seen_alefMaksura-ar=0+346", + "variations": { + "MSHQ": 10.0 } }, { - "input": "نعم", - "expectation": { - "default": "meem-ar.fina=2+567|_c.ain.meem=1+35|ain-ar.medi=1+220|dotabove-ar.beh=0@-9,392+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", - "RaqqSura.ttf": "meem-ar.fina=2+567|ain-ar.medi=1+202|dotabove-ar.beh=0@-15,380+0|behDotless-ar.init.high=0+100" + "only": "RaqqSura.ttf", + "input": "سٍ", + "expectation": "kasratan-ar.alt=0@258,-381+0|seen-ar=0+496", + "variations": { + "MSHQ": 10.0 } }, { - "input": "نعن", - "expectation": { - "default": "dotabove-ar=2@-3,101+0|noonghunna-ar.fina=2+250|_c.hah.noon=1+-20|ain-ar.medi=1+220|dotabove-ar.beh=0@-9,392+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", - "RaqqSura.ttf": "dotabove-ar=2@-3,90+0|noonghunna-ar.fina=2+250|ain-ar.medi=1+202|dotabove-ar.beh=0@-15,380+0|behDotless-ar.init.high=0+100" + "only": "RaqqSura.ttf", + "input": "سِ", + "expectation": "kasra-ar=0@258,-314+0|seen-ar=0+496", + "variations": { + "MSHQ": 10.0 } }, { - "input": "نعه", - "expectation": { - "default": "heh-ar.fina=2+339|_c.ain.medi.beh=1+66|ain-ar.medi=1+220|dotabove-ar.beh=0@-9,392+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", - "RaqqSura.ttf": "heh-ar.fina=2+336|ain-ar.medi=1+202|dotabove-ar.beh=0@-15,380+0|behDotless-ar.init.high=0+100" + "only": "RaqqSura.ttf", + "input": "سے", + "expectation": "yehbarree-ar.fina.baseline=1+297|seen-ar.init=0@-32,110+733", + "variations": { + "MSHQ": 10.0 } }, { - "input": "نعو", - "expectation": { - "default": "waw-ar.fina.round=2+492|_c.ain.meem=1@-7,0+28|ain-ar.medi=1+220|dotabove-ar.beh=0@-9,392+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", - "RaqqSura.ttf": "waw-ar.fina=2+477|ain-ar.medi=1+202|dotabove-ar.beh=0@-15,380+0|behDotless-ar.init.high=0+100" + "only": "RaqqSura.ttf", + "input": "شي", + "expectation": "twodotsverticalbelow-ar=0@330,-337+0|threedotshorizontalabove-ar.3=0@-35,167+0|seen_alefMaksura-ar=0+346", + "variations": { + "MSHQ": 10.0 } }, { - "input": "نعى", - "expectation": { - "default": "alefMaksura-ar.fina=2+282|_c.ain.yeh=1@-20,0+-5|ain-ar.medi=1+220|dotabove-ar.beh=0@-9,392+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", - "RaqqSura.ttf": "alefMaksura-ar.fina=2+282|ain-ar.medi=1+202|dotabove-ar.beh=0@-15,380+0|behDotless-ar.init.high=0+100" + "only": "RaqqSura.ttf", + "input": "صح", + "expectation": "hah-ar.fina=1+417|sad-ar.init=0@0,115+765", + "variations": { + "MSHQ": 10.0 } }, { - "input": "نعے", - "expectation": { - "default": "yehbarree-ar.fina=2+297|_c.ain.yeh=1@-5,0+10|ain-ar.medi=1+220|dotabove-ar.beh=0@-9,392+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+540", - "RaqqSura.ttf": "yehbarree-ar.fina=2+297|ain-ar.medi=1+202|dotabove-ar.beh=0@-15,380+0|behDotless-ar.init.high=0+560" + "only": "RaqqSura.ttf", + "input": "صٍ", + "expectation": "kasratan-ar=0@354,-129+0|sad-ar=0+883", + "variations": { + "MSHQ": 10.0 } }, { - "input": "نـا", - "expectation": { - "default": "alef-ar.fina.kashida=2+219|kashida-ar=1+100|dotabove-ar=0@2,299+0|behDotless-ar.init=0+130", - "RaqqSura.ttf": "alef-ar.fina.kashida=2+198|kashida-ar=1+100|dotabove-ar=0@-20,297+0|behDotless-ar.init=0+100" + "only": "RaqqSura.ttf", + "input": "صِ", + "expectation": "kasra-ar=0@421,-129+0|sad-ar=0+883", + "variations": { + "MSHQ": 10.0 } }, { - "input": "نفا", - "expectation": { - "default": "alef-ar.fina=2+101|dotabove-ar=1@1,329+0|_c.feh.medi.beh=1+0|fehDotless-ar.medi=1+377|dotabove-ar=0@2,299+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", - "RaqqSura.ttf": "alef-ar.fina=2+90|dotabove-ar=1@1,329+0|fehDotless-ar.medi=1+377|dotabove-ar=0@-20,297+0|behDotless-ar.init=0+100" + "only": "RaqqSura.ttf", + "input": "صے", + "expectation": "yehbarree-ar.fina.baseline=1+297|sad-ar.init=0@0,110+765", + "variations": { + "MSHQ": 10.0 } }, { - "input": "نفب", - "expectation": { - "default": "dotbelow-ar=2@834,-111+0|behDotless-ar.fina=2+984|dotabove-ar=1@1,329+0|_c.feh.medi.beh=1+0|fehDotless-ar.medi=1+377|dotabove-ar=0@2,299+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", - "RaqqSura.ttf": "dotbelow-ar=2@834,-111+0|behDotless-ar.fina=2+984|dotabove-ar=1@1,329+0|fehDotless-ar.medi=1+377|dotabove-ar=0@-20,297+0|behDotless-ar.init=0+100" + "only": "RaqqSura.ttf", + "input": "طح", + "expectation": "hah-ar.fina=1+417|tah-ar.init.hah1=0+765", + "variations": { + "MSHQ": 10.0 } }, { - "input": "نفد", - "expectation": { - "default": "dal-ar.fina=2+875|dotabove-ar=1@-6,329+0|_c.feh.medi.dal=1+71|fehDotless-ar.medi=1@-78,0+299|dotabove-ar=0@2,299+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", - "RaqqSura.ttf": "dal-ar.fina=2+875|dotabove-ar=1@1,329+0|fehDotless-ar.medi=1+377|dotabove-ar=0@-20,297+0|behDotless-ar.init=0+100" + "only": "RaqqSura.ttf", + "input": "طً", + "expectation": "fathatan-ar.alt=0@-75,483+0|tah-ar=0+805", + "variations": { + "MSHQ": 10.0 } }, { - "input": "نفر", - "expectation": { - "default": "reh-ar.fina=2+393|dotabove-ar=1@-22,329+0|_c.feh.medi.reh=1+47|fehDotless-ar.medi=1@-70,0+307|dotabove-ar=0@2,299+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", - "RaqqSura.ttf": "reh-ar.fina=2+387|dotabove-ar=1@1,329+0|fehDotless-ar.medi=1+377|dotabove-ar=0@-20,297+0|behDotless-ar.init=0+100" + "only": "RaqqSura.ttf", + "input": "طَ", + "expectation": "fatha-ar=0@-75,550+0|tah-ar=0+805", + "variations": { + "MSHQ": 10.0 } }, { - "input": "نفس", - "expectation": { - "default": "seen-ar.fina.low=2+487|dotabove-ar=1@1,329+0|_c.feh.medi.beh=1+0|fehDotless-ar.medi=1+377|dotabove-ar=0@2,299+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", - "RaqqSura.ttf": "seen-ar.fina=2+484|dotabove-ar=1@1,329+0|fehDotless-ar.medi=1+377|dotabove-ar=0@-20,297+0|behDotless-ar.init=0+100" + "only": "RaqqSura.ttf", + "input": "طے", + "expectation": "yehbarree-ar.fina.baseline=1+297|tah-ar.init.hah1=0@0,-5+765", + "variations": { + "MSHQ": 10.0 } }, { - "input": "نفض", - "expectation": { - "default": "dotabove-ar=2@398,247+0|sad-ar.fina=2+876|dotabove-ar=1@-6,329+0|_c.feh.medi.dal=1+71|fehDotless-ar.medi=1@-78,0+299|dotabove-ar=0@2,299+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", - "RaqqSura.ttf": "dotabove-ar=2@398,247+0|sad-ar.fina=2+876|dotabove-ar=1@1,329+0|fehDotless-ar.medi=1+377|dotabove-ar=0@-20,297+0|behDotless-ar.init=0+100" + "only": "RaqqSura.ttf", + "input": "عا", + "expectation": "alef-ar.fina=1+90|ain-ar.init=0+680", + "variations": { + "MSHQ": 10.0 } }, { - "input": "نفط", - "expectation": { - "default": "tah-ar.fina=2+798|dotabove-ar=1@-6,329+0|_c.feh.medi.dal=1+71|fehDotless-ar.medi=1@-78,0+299|dotabove-ar=0@2,299+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", - "RaqqSura.ttf": "tah-ar.fina=2+798|dotabove-ar=1@1,329+0|fehDotless-ar.medi=1+377|dotabove-ar=0@-20,297+0|behDotless-ar.init=0+100" + "only": "RaqqSura.ttf", + "input": "عب", + "expectation": "dotbelow-ar=1@834,-111+0|behDotless-ar.fina=1+984|ain-ar.init=0+680", + "variations": { + "MSHQ": 10.0 } }, { - "input": "نفع", - "expectation": { - "default": "ain-ar.fina=2+267|dotabove-ar=1@1,329+0|_c.feh.medi.beh=1+0|fehDotless-ar.medi=1+377|dotabove-ar=0@2,299+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", - "RaqqSura.ttf": "ain-ar.fina=2+262|dotabove-ar=1@1,329+0|fehDotless-ar.medi=1+377|dotabove-ar=0@-20,297+0|behDotless-ar.init=0+100" + "only": "RaqqSura.ttf", + "input": "عح", + "expectation": "hah-ar.fina=1+417|ain-ar.init.hah=0@0,115+616", + "variations": { + "MSHQ": 10.0 } }, { - "input": "نفف", - "expectation": { - "default": "dotabove-ar=2@609,319+0|fehDotless-ar.fina=2+997|dotabove-ar=1@1,329+0|_c.feh.medi.beh=1+0|fehDotless-ar.medi=1+377|dotabove-ar=0@2,299+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", - "RaqqSura.ttf": "dotabove-ar=2@609,319+0|fehDotless-ar.fina=2+997|dotabove-ar=1@1,329+0|fehDotless-ar.medi=1+377|dotabove-ar=0@-20,297+0|behDotless-ar.init=0+100" + "only": "RaqqSura.ttf", + "input": "عد", + "expectation": "dal-ar.fina=1+875|ain-ar.init=0+680", + "variations": { + "MSHQ": 10.0 } }, { - "input": "نفق", - "expectation": { - "default": "twodotsverticalabove-ar=2@-62,265+0|qafDotless-ar.fina=2+373|dotabove-ar=1@-16,329+0|_c.feh.medi.meem=1@7,0+54|fehDotless-ar.medi=1@-71,0+306|dotabove-ar=0@2,299+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", - "RaqqSura.ttf": "twodotsverticalabove-ar=2@-62,265+0|qafDotless-ar.fina=2+373|dotabove-ar=1@1,329+0|fehDotless-ar.medi=1+377|dotabove-ar=0@-20,297+0|behDotless-ar.init=0+100" + "only": "RaqqSura.ttf", + "input": "عر", + "expectation": "reh-ar.fina=1+387|ain-ar.init=0+680", + "variations": { + "MSHQ": 10.0 } }, { - "input": "نفك", - "expectation": { - "default": "kaf-ar.fina=2+889|dotabove-ar=1@-6,329+0|_c.feh.medi.dal=1+71|fehDotless-ar.medi=1@-78,0+299|dotabove-ar=0@2,299+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", - "RaqqSura.ttf": "kaf-ar.fina=2+889|dotabove-ar=1@1,329+0|fehDotless-ar.medi=1+377|dotabove-ar=0@-20,297+0|behDotless-ar.init=0+100" + "only": "RaqqSura.ttf", + "input": "عس", + "expectation": "seen-ar.fina.low=1+470|ain-ar.init=0+680", + "variations": { + "MSHQ": 10.0 } }, { - "input": "نفل", - "expectation": { - "default": "lam-ar.fina=2+177|dotabove-ar=1@1,329+0|_c.feh.medi.beh=1+0|fehDotless-ar.medi=1+377|dotabove-ar=0@2,299+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", - "RaqqSura.ttf": "lam-ar.fina=2+177|dotabove-ar=1@1,329+0|fehDotless-ar.medi=1+377|dotabove-ar=0@-20,297+0|behDotless-ar.init=0+100" + "only": "RaqqSura.ttf", + "input": "عض", + "expectation": "dotabove-ar=1@398,247+0|sad-ar.fina=1+876|ain-ar.init=0+680", + "variations": { + "MSHQ": 10.0 } }, { - "input": "نفم", - "expectation": { - "default": "meem-ar.fina=2+567|dotabove-ar=1@-23,329+0|_c.feh.medi.meem=1+47|fehDotless-ar.medi=1@-71,0+306|dotabove-ar=0@2,299+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", - "RaqqSura.ttf": "meem-ar.fina=2+567|dotabove-ar=1@1,329+0|fehDotless-ar.medi=1+377|dotabove-ar=0@-20,297+0|behDotless-ar.init=0+100" + "only": "RaqqSura.ttf", + "input": "عط", + "expectation": "tah-ar.fina=1+798|ain-ar.init=0+680", + "variations": { + "MSHQ": 10.0 } }, { - "input": "نفن", - "expectation": { - "default": "dotabove-ar=2@-3,101+0|noonghunna-ar.fina=2+250|dotabove-ar=1@-44,329+0|_c.hah.noon=1+-20|fehDotless-ar.medi=1@-25,0+352|dotabove-ar=0@2,299+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", - "RaqqSura.ttf": "dotabove-ar=2@-3,90+0|noonghunna-ar.fina=2+250|dotabove-ar=1@1,329+0|fehDotless-ar.medi=1+377|dotabove-ar=0@-20,297+0|behDotless-ar.init=0+100" + "only": "RaqqSura.ttf", + "input": "عع", + "expectation": "ain-ar.fina=1+262|ain-ar.init=0+680", + "variations": { + "MSHQ": 10.0 } }, { - "input": "نفه", - "expectation": { - "default": "heh-ar.fina=2+339|dotabove-ar=1@1,329+0|_c.feh.medi.beh=1+0|fehDotless-ar.medi=1+377|dotabove-ar=0@2,299+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", - "RaqqSura.ttf": "heh-ar.fina=2+336|dotabove-ar=1@1,329+0|fehDotless-ar.medi=1+377|dotabove-ar=0@-20,297+0|behDotless-ar.init=0+100" + "only": "RaqqSura.ttf", + "input": "عف", + "expectation": "dotabove-ar=1@609,319+0|fehDotless-ar.fina=1+997|ain-ar.init=0+680", + "variations": { + "MSHQ": 10.0 } }, { - "input": "نفو", - "expectation": { - "default": "waw-ar.fina=2+472|dotabove-ar=1@-4,329+0|_c.feh.medi.meem=1@19,0+66|fehDotless-ar.medi=1@-71,0+306|dotabove-ar=0@2,299+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", - "RaqqSura.ttf": "waw-ar.fina=2+477|dotabove-ar=1@1,329+0|fehDotless-ar.medi=1+377|dotabove-ar=0@-20,297+0|behDotless-ar.init=0+100" + "only": "RaqqSura.ttf", + "input": "عق", + "expectation": "twodotsverticalabove-ar=1@-62,265+0|qafDotless-ar.fina=1+373|ain-ar.init=0+680", + "variations": { + "MSHQ": 10.0 } }, { - "input": "نفى", - "expectation": { - "default": "alefMaksura-ar.fina=2+282|dotabove-ar=1@-59,329+0|_c.feh.medi.meem=1@-36,0+11|fehDotless-ar.medi=1@-71,0+306|dotabove-ar=0@2,299+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", - "RaqqSura.ttf": "alefMaksura-ar.fina=2+282|dotabove-ar=1@1,329+0|fehDotless-ar.medi=1+377|dotabove-ar=0@-20,297+0|behDotless-ar.init=0+100" + "only": "RaqqSura.ttf", + "input": "عك", + "expectation": "kaf-ar.fina=1+889|ain-ar.init=0+680", + "variations": { + "MSHQ": 10.0 } }, { - "input": "نفے", - "expectation": { - "default": "yehbarree-ar.fina=2+297|dotabove-ar=1@-46,329+0|_c.feh.medi.reh=1@-24,0+23|fehDotless-ar.medi=1@-70,0+307|dotabove-ar=0@2,299+0|_c.seen.beh=0+0|behDotless-ar.init=0+350", - "RaqqSura.ttf": "yehbarree-ar.fina=2+297|dotabove-ar=1@1,329+0|fehDotless-ar.medi=1+377|dotabove-ar=0@-20,297+0|behDotless-ar.init=0+390" + "only": "RaqqSura.ttf", + "input": "عل", + "expectation": "lam-ar.fina=1+177|ain-ar.init=0+680", + "variations": { + "MSHQ": 10.0 } }, { - "input": "نقد", - "expectation": { - "default": "dal-ar.fina=2+875|twodotsverticalabove-ar=1@-36,337+0|_c.feh.medi.dal=1+71|fehDotless-ar.medi=1@-78,0+299|dotabove-ar=0@2,299+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", - "RaqqSura.ttf": "dal-ar.fina=2+875|twodotsverticalabove-ar=1@-29,337+0|fehDotless-ar.medi=1+377|dotabove-ar=0@-20,297+0|behDotless-ar.init=0+100" + "only": "RaqqSura.ttf", + "input": "عم", + "expectation": "meem-ar.fina=1+567|ain-ar.init=0+680", + "variations": { + "MSHQ": 10.0 } }, { - "input": "ننا", - "expectation": { - "default": "alef-ar.fina=2+101|dotabove-ar.beh=1@8,294+0|_c.seen.beh=1+0|behDotless-ar.medi=1+128|dotabove-ar.beh=0@-9,392+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", - "RaqqSura.ttf": "alef-ar.fina=2+90|dotabove-ar.beh=1@-15,297+0|behDotless-ar.medi=1+100|dotabove-ar.beh=0@-15,380+0|behDotless-ar.init.high=0+100" + "only": "RaqqSura.ttf", + "input": "عن", + "expectation": "dotabove-ar=1@-3,90+0|noonghunna-ar.fina=1+250|ain-ar.init=0+680", + "variations": { + "MSHQ": 10.0 } }, { - "input": "نهم", - "expectation": { - "default": "meem-ar.fina.round=2+554|heh-ar.medi.round=1+323|dotabove-ar=0@-2,339+0|_c.seen.beh=0+0|behDotless-ar.init.med=0+130", - "RaqqSura.ttf": "meem-ar.fina.round=2+554|heh-ar.medi.round=1+320|dotabove-ar=0@-20,336+0|behDotless-ar.init.med=0+100" + "only": "RaqqSura.ttf", + "input": "عه", + "expectation": "heh-ar.fina=1+336|ain-ar.init=0+680", + "variations": { + "MSHQ": 10.0 } }, { - "input": "نين", - "expectation": { - "default": "dotabove-ar=2@-3,101+0|noonghunna-ar.fina=2+250|twodotsverticalbelow-ar=1@55,-137+0|behDotless-ar.medi.round=1+108|dotabove-ar.beh=0@-9,392+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", - "RaqqSura.ttf": "dotabove-ar=2@-3,90+0|noonghunna-ar.fina=2+250|twodotsverticalbelow-ar=1@50,-137+0|behDotless-ar.medi.round=1@-6,0+104|dotabove-ar.beh=0@-15,380+0|behDotless-ar.init.high=0+100" + "only": "RaqqSura.ttf", + "input": "عو", + "expectation": "waw-ar.fina=1+477|ain-ar.init=0+680", + "variations": { + "MSHQ": 10.0 } }, { - "input": "هسي", - "expectation": { - "default": "twodotsverticalbelow-ar=1@339,-337+0|seen_alefMaksura-ar.fina=1+343|_c.feh.medi.beh=0+0|heh-ar.init=0+361", - "RaqqSura.ttf": "twodotsverticalbelow-ar=1@339,-337+0|seen_alefMaksura-ar.fina=1+343|heh-ar.init=0@-26,0+335" + "only": "RaqqSura.ttf", + "input": "عى", + "expectation": "alefMaksura-ar.fina=1+282|ain-ar.init=0@-43,0+637", + "variations": { + "MSHQ": 10.0 } }, { - "input": "وسے", - "expectation": { - "default": "yehbarree-ar.fina.baseline=2+297|seen-ar.init=1@-32,110+736|waw-ar=0@380,0+889", - "RaqqSura.ttf": "yehbarree-ar.fina.baseline=2+297|seen-ar.init=1@-32,110+733|waw-ar=0@-20,0+496" + "only": "RaqqSura.ttf", + "input": "عي", + "expectation": "twodotsverticalbelow-ar=1@339,-334+0|alefMaksura-ar.fina=1+282|ain-ar.init=0@-43,0+637", + "variations": { + "MSHQ": 10.0 } }, { - "input": "وصے", - "expectation": { - "default": "yehbarree-ar.fina.baseline=2+297|sad-ar.init=1@0,110+765|waw-ar=0@395,0+904", - "RaqqSura.ttf": "yehbarree-ar.fina.baseline=2+297|sad-ar.init=1@0,110+765|waw-ar=0@-5,0+511" + "only": "RaqqSura.ttf", + "input": "عے", + "expectation": "yehbarree-ar.fina.baseline=1+297|ain-ar.init=0@-30,110+710", + "variations": { + "MSHQ": 10.0 } }, { - "input": "وفے", - "expectation": { - "default": "yehbarree-ar.fina.baseline=2+297|dotabove-ar=1@-67,483+0|fehDotless-ar.init.yeh=1@0,110+768|waw-ar=0@320,0+829", - "RaqqSura.ttf": "yehbarree-ar.fina.baseline=2+297|dotabove-ar=1@-67,483+0|fehDotless-ar.init.yeh=1@0,110+768|waw-ar=0@-80,0+436" + "only": "RaqqSura.ttf", + "input": "ـد", + "expectation": "dal-ar.fina=1+875|kashida-ar=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "ولح", - "expectation": { - "default": "hah-ar.fina.alt=2+407|lam-ar.init.hah1.alt=1@63,0+578|waw-ar=0@400,0+909", - "RaqqSura.ttf": "hah-ar.fina.alt=2+407|lam-ar.init.hah1.alt=1@63,0+578|waw-ar=0+516" + "only": "RaqqSura.ttf", + "input": "فا", + "expectation": "dotabove-ar=0@153,394+0|fehDotless_alef-ar=0+560", + "variations": { + "MSHQ": 10.0 } }, { - "input": "ىِٕ", - "expectation": { - "default": "kasra-ar=0@155,-321+0|alefMaksura-ar=0+395", - "RaqqSura.ttf": "kasra-ar=0@155,-289+0|alefMaksura-ar=0+393" + "only": "RaqqSura.ttf", + "input": "فب", + "expectation": "dotbelow-ar=1@834,-111+0|behDotless-ar.fina=1+984|dotabove-ar=0@-61,373+0|fehDotless-ar.init=0+334", + "variations": { + "MSHQ": 10.0 } }, { - "input": "يعج", - "expectation": { - "default": "dotbelow-ar=2@571,-122+0|hah-ar.fina=2+417|ain-ar.medi=1@0,115+220|twodotsverticalbelow-ar=0@131,92+0|_c.seen.beh=0@0,115+0|behDotless-ar.init.high=0@0,115+240", - "RaqqSura.ttf": "dotbelow-ar=2@571,-122+0|hah-ar.fina=2+417|ain-ar.medi=1@0,115+202|twodotsverticalbelow-ar=0@51,42+0|behDotless-ar.init.high=0@0,115+260" + "only": "RaqqSura.ttf", + "input": "فد", + "expectation": "dal-ar.fina=1+875|dotabove-ar=0@-61,373+0|fehDotless-ar.init=0+334", + "variations": { + "MSHQ": 10.0 } }, { - "input": "يعظ", - "expectation": { - "default": "dotabove-ar=2@350,247+0|tah-ar.fina=2+798|_c.ain.dal=1+47|ain-ar.medi=1+220|twodotsverticalbelow-ar=0@81,-73+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", - "RaqqSura.ttf": "dotabove-ar=2@350,247+0|tah-ar.fina=2+798|ain-ar.medi=1+202|twodotsverticalbelow-ar=0@51,-73+0|behDotless-ar.init.high=0+100" + "only": "RaqqSura.ttf", + "input": "فر", + "expectation": "reh-ar.fina=1+387|dotabove-ar=0@-61,373+0|fehDotless-ar.init=0+334", + "variations": { + "MSHQ": 10.0 } }, { - "input": "يقظ", - "expectation": { - "default": "dotabove-ar=2@350,247+0|tah-ar.fina=2+798|twodotsverticalabove-ar=1@-36,337+0|_c.feh.medi.dal=1+71|fehDotless-ar.medi=1@-78,0+299|twodotsverticalbelow-ar=0@72,-73+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", - "RaqqSura.ttf": "dotabove-ar=2@350,247+0|tah-ar.fina=2+798|twodotsverticalabove-ar=1@-29,337+0|fehDotless-ar.medi=1+377|twodotsverticalbelow-ar=0@72,-73+0|behDotless-ar.init=0+100" + "only": "RaqqSura.ttf", + "input": "فس", + "expectation": "seen-ar.fina=1+484|dotabove-ar=0@-61,373+0|fehDotless-ar.init=0+334", + "variations": { + "MSHQ": 10.0 } }, { - "input": "يمر", - "expectation": { - "default": "reh-ar.fina=2+393|meem-ar.medi.round2=1@20,0+418|twodotsverticalbelow-ar=0@72,-73+0|behDotless-ar.init=0+130", - "RaqqSura.ttf": "reh-ar.fina=2+387|meem-ar.medi.round2=1@20,0+418|twodotsverticalbelow-ar=0@72,-73+0|behDotless-ar.init=0+100" + "only": "RaqqSura.ttf", + "input": "فص", + "expectation": "sad-ar.fina=1+876|dotabove-ar=0@-61,373+0|fehDotless-ar.init=0+334", + "variations": { + "MSHQ": 10.0 } }, { - "input": "يمن", - "expectation": { - "default": "dotabove-ar=2@-3,101+0|noonghunna-ar.fina=2+250|meem-ar.medi.round2=1+398|twodotsverticalbelow-ar=0@72,-73+0|behDotless-ar.init=0+130", - "RaqqSura.ttf": "dotabove-ar=2@-3,90+0|noonghunna-ar.fina=2+250|meem-ar.medi.round2=1+398|twodotsverticalbelow-ar=0@72,-73+0|behDotless-ar.init=0+100" + "only": "RaqqSura.ttf", + "input": "فط", + "expectation": "tah-ar.fina=1+798|dotabove-ar=0@-61,373+0|fehDotless-ar.init=0+334", + "variations": { + "MSHQ": 10.0 } }, { - "input": "وقح لا", - "expectation": { - "default": "lam_alef-ar=4+542|space=3+400|hah-ar.fina=2+417|twodotsverticalabove-ar=1@-86,496+0|fehDotless-ar.init.hah=1@11,115+479|waw-ar=0@320,0+829", - "RaqqSura.ttf": "lam_alef-ar=4+542|space.mark=3+0|hah-ar.fina=2+417|twodotsverticalabove-ar=1@-86,496+0|fehDotless-ar.init.hah=1@11,115+479|waw-ar=0@-80,0+436" + "only": "RaqqSura.ttf", + "input": "فع", + "expectation": "ain-ar.fina=1+262|dotabove-ar=0@-61,373+0|fehDotless-ar.init=0+334", + "variations": { + "MSHQ": 10.0 } }, { - "input": "حال", + "only": "RaqqSura.ttf", + "input": "فف", + "expectation": "dotabove-ar=1@609,319+0|fehDotless-ar.fina=1+997|dotabove-ar=0@-61,373+0|fehDotless-ar.init=0+334", "variations": { - "SPAC": -100 - }, - "expectation": { - "default": "lam-ar.short=2+186|alef-ar.fina=1@20,0+121|_c.hah.beh=0+7|hah-ar.init=0+703", - "RaqqSura.ttf": "lam-ar.short=2+186|alef-ar.fina.lam=1+90|hah-ar.init=0+703" + "MSHQ": 10.0 } }, { - "input": "قال", + "only": "RaqqSura.ttf", + "input": "فق", + "expectation": "twodotsverticalabove-ar=1@-62,265+0|qafDotless-ar.fina=1+373|dotabove-ar=0@-61,373+0|fehDotless-ar.init=0+334", "variations": { - "SPAC": -100 - }, - "expectation": { - "default": "lam-ar.short=2+186|twodotsverticalabove-ar=0@126,402+0|fehDotless_alef-ar=0@3,0+563", - "RaqqSura.ttf": "lam-ar.short=2+186|twodotsverticalabove-ar=0@106,402+0|fehDotless_alef-ar=0@-17,0+543" + "MSHQ": 10.0 } }, { - "input": "بسي", - "features": { - "salt": true - }, - "expectation": { - "default": "twodotsverticalbelow-ar=1@339,-337+0|seen_alefMaksura-ar.fina=1+343|dotbelow-ar=0@81,-46+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", - "RaqqSura.ttf": "twodotsverticalbelow-ar=1@339,-337+0|seen_alefMaksura-ar.fina=1+343|dotbelow-ar=0@51,-46+0|behDotless-ar.init.high=0+100" + "only": "RaqqSura.ttf", + "input": "فك", + "expectation": "kaf-ar.fina=1+889|dotabove-ar=0@-61,373+0|fehDotless-ar.init=0+334", + "variations": { + "MSHQ": 10.0 } }, { - "input": "بشي", - "features": { - "salt": true - }, - "expectation": { - "default": "twodotsverticalbelow-ar=1@339,-337+0|threedotshorizontalabove-ar.3=1@-35,167+0|seen_alefMaksura-ar.fina=1+343|dotbelow-ar=0@81,-46+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", - "RaqqSura.ttf": "twodotsverticalbelow-ar=1@339,-337+0|threedotshorizontalabove-ar.3=1@-35,167+0|seen_alefMaksura-ar.fina=1+343|dotbelow-ar=0@51,-46+0|behDotless-ar.init.high=0+100" + "only": "RaqqSura.ttf", + "input": "فل", + "expectation": "lam-ar.fina=1+177|dotabove-ar=0@-61,373+0|fehDotless-ar.init=0+334", + "variations": { + "MSHQ": 10.0 } }, { - "input": "بني", - "features": { - "salt": true - }, - "expectation": { - "default": "twodotsverticalbelow-ar=2@259,-523+0|alefMaksura-ar.fina.salt=2+282|dotabove-ar.beh=1@8,294+0|behDotless-ar.medi=1+128|dotbelow-ar=0@81,-46+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", - "RaqqSura.ttf": "twodotsverticalbelow-ar=1@311,-329+0|dotabove-ar=1@-10,297+0|behDotless_alefMaksura-ar.fina=1+110|dotbelow-ar=0@51,-46+0|behDotless-ar.init.high=0+100" + "only": "RaqqSura.ttf", + "input": "فم", + "expectation": "meem-ar.fina=1+567|dotabove-ar=0@-61,373+0|fehDotless-ar.init=0+334", + "variations": { + "MSHQ": 10.0 } }, { - "input": "جنى", - "features": { - "salt": true - }, - "expectation": { - "default": "alefMaksura-ar.fina.tooth=2+9|dotabove-ar.beh=1@-29,270+0|behDotless-ar.medi.round=1+108|dotbelow-ar=0@220,-112+0|_c.hah.beh=0+7|hah-ar.init=0+703", - "RaqqSura.ttf": "dotabove-ar=1@-10,297+0|behDotless_alefMaksura-ar.fina=1+110|dotbelow-ar=0@213,-112+0|hah-ar.init=0+703" + "only": "RaqqSura.ttf", + "input": "فن", + "expectation": "dotabove-ar=1@-3,90+0|noonghunna-ar.fina=1+250|dotabove-ar=0@-61,373+0|fehDotless-ar.init=0+334", + "variations": { + "MSHQ": 10.0 } }, { - "input": "سسي", - "features": { - "salt": true - }, - "expectation": { - "default": "twodotsverticalbelow-ar=1@339,-337+0|seen_alefMaksura-ar.fina=1+343|_c.seen.beh=0+0|seen-ar.init=0+378", - "RaqqSura.ttf": "twodotsverticalbelow-ar=1@339,-337+0|seen_alefMaksura-ar.fina=1+343|seen-ar.init=0+345" + "only": "RaqqSura.ttf", + "input": "فه", + "expectation": "heh-ar.fina=1+336|dotabove-ar=0@-61,373+0|fehDotless-ar.init=0+334", + "variations": { + "MSHQ": 10.0 } }, { - "input": "صسي", - "features": { - "salt": true - }, - "expectation": { - "default": "twodotsverticalbelow-ar=1@339,-337+0|seen_alefMaksura-ar.fina=1+343|_c.seen.beh=0+0|sad-ar.init=0+765", - "RaqqSura.ttf": "twodotsverticalbelow-ar=1@339,-337+0|seen_alefMaksura-ar.fina=1+343|sad-ar.init=0+765" + "only": "RaqqSura.ttf", + "input": "فو", + "expectation": "waw-ar.fina=1+477|dotabove-ar=0@-61,373+0|fehDotless-ar.init=0+334", + "variations": { + "MSHQ": 10.0 } }, { - "input": "طسي", - "features": { - "salt": true - }, - "expectation": { - "default": "twodotsverticalbelow-ar=1@339,-337+0|seen_alefMaksura-ar.fina=1+343|_c.seen.beh=0+0|tah-ar.init=0+765", - "RaqqSura.ttf": "twodotsverticalbelow-ar=1@339,-337+0|seen_alefMaksura-ar.fina=1+343|tah-ar.init=0+765" + "only": "RaqqSura.ttf", + "input": "فى", + "expectation": "alefMaksura-ar.fina.wide=1+267|dotabove-ar=0@-67,373+0|fehDotless-ar.init.yeh=0+328", + "variations": { + "MSHQ": 10.0 } }, { - "input": "طلى", - "features": { - "salt": true - }, - "expectation": { - "default": "alefMaksura-ar.fina.tooth=2+9|lam-ar.medi.round.short=1@2,0+95|_c.seen.beh=0+0|tah-ar.init=0+765", - "RaqqSura.ttf": "lam_alefMaksura-ar.fina.short=1+110|tah-ar.init=0+765" + "only": "RaqqSura.ttf", + "input": "في", + "expectation": "twodotsverticalbelow-ar=1@386,-339+0|alefMaksura-ar.fina.wide=1+267|dotabove-ar=0@-67,373+0|fehDotless-ar.init.yeh=0+328", + "variations": { + "MSHQ": 10.0 } }, { - "input": "عسي", - "features": { - "salt": true - }, - "expectation": { - "default": "twodotsverticalbelow-ar=1@339,-337+0|seen_alefMaksura-ar.fina=1+343|_c.ain.init.beh=0+95|ain-ar.init=0@-50,0+640", - "RaqqSura.ttf": "twodotsverticalbelow-ar=1@339,-337+0|seen_alefMaksura-ar.fina=1+343|ain-ar.init=0+680" + "only": "RaqqSura.ttf", + "input": "فے", + "expectation": "yehbarree-ar.fina.baseline=1+297|dotabove-ar=0@-67,483+0|fehDotless-ar.init.yeh=0@0,110+768", + "variations": { + "MSHQ": 10.0 } }, { - "input": "على", - "features": { - "salt": true - }, - "expectation": { - "default": "alefMaksura-ar.fina.tooth=2+9|lam-ar.medi.round=1+95|_c.ain.init.beh=0+95|ain-ar.init=0@-50,0+640", - "RaqqSura.ttf": "lam_alefMaksura-ar.fina=1+110|ain-ar.init=0+680" + "only": "RaqqSura.ttf", + "input": "قل", + "expectation": "lam-ar.fina=1+177|twodotsverticalabove-ar=0@-91,381+0|fehDotless-ar.init=0+334", + "variations": { + "MSHQ": 10.0 } }, { - "input": "فسي", - "features": { - "salt": true - }, - "expectation": { - "default": "twodotsverticalbelow-ar=1@339,-337+0|seen_alefMaksura-ar.fina=1+343|dotabove-ar=0@-1,373+0|_c.feh.init.beh=0+174|fehDotless-ar.init=0@-114,0+220", - "RaqqSura.ttf": "twodotsverticalbelow-ar=1@339,-337+0|seen_alefMaksura-ar.fina=1+343|dotabove-ar=0@-61,373+0|fehDotless-ar.init=0+334" + "only": "RaqqSura.ttf", + "input": "كا", + "expectation": "alef-ar.fina=1+90|kaf-ar.init=0@-5,0+760", + "variations": { + "MSHQ": 10.0 } }, { - "input": "كسي", - "features": { - "salt": true - }, - "expectation": { - "default": "twodotsverticalbelow-ar=1@339,-337+0|seen_alefMaksura-ar.fina=1+343|kaf-ar.init.alt=0@-5,0+760", - "RaqqSura.ttf": "twodotsverticalbelow-ar=1@339,-337+0|seen_alefMaksura-ar.fina=1+343|kaf-ar.init=0@-5,0+760" + "only": "RaqqSura.ttf", + "input": "كد", + "expectation": "dal-ar.fina=1+875|kaf-ar.init=0@-10,0+755", + "variations": { + "MSHQ": 10.0 } }, { - "input": "لسى", - "features": { - "salt": true - }, - "expectation": { - "default": "seen_alefMaksura-ar.fina=1+343|_c.seen.beh=0+0|lam-ar.init=0+123", - "RaqqSura.ttf": "seen_alefMaksura-ar.fina=1+343|lam-ar.init=0+123" + "only": "RaqqSura.ttf", + "input": "كر", + "expectation": "reh-ar.fina=1+387|kaf-ar.init=0@-5,0+760", + "variations": { + "MSHQ": 10.0 } }, { - "input": "لسي", - "features": { - "salt": true - }, - "expectation": { - "default": "twodotsverticalbelow-ar=1@339,-337+0|seen_alefMaksura-ar.fina=1+343|_c.seen.beh=0+0|lam-ar.init=0+123", - "RaqqSura.ttf": "twodotsverticalbelow-ar=1@339,-337+0|seen_alefMaksura-ar.fina=1+343|lam-ar.init=0+123" + "only": "RaqqSura.ttf", + "input": "كم", + "expectation": "meem-ar.fina=1+567|kaf-ar.init=0@-12,0+753", + "variations": { + "MSHQ": 10.0 } }, { - "input": "ليً", - "features": { - "salt": true - }, - "expectation": { - "default": "fathatan-ar=1@-11,199+0|twodotsverticalbelow-ar=1@332,-510+0|alefMaksura-ar.fina.wide.salt=1+267|lam-ar.init=0+123", - "RaqqSura.ttf": "fathatan-ar=1@-11,199+0|twodotsverticalbelow-ar=1@332,-510+0|alefMaksura-ar.fina.wide.salt=1+267|lam-ar.init=0+123" + "only": "RaqqSura.ttf", + "input": "كن", + "expectation": "dotabove-ar=1@-3,90+0|noonghunna-ar.fina=1+250|kaf-ar.init=0@-30,0+735", + "variations": { + "MSHQ": 10.0 } }, { - "input": "مسي", - "features": { - "salt": true - }, - "expectation": { - "default": "twodotsverticalbelow-ar=1@339,-337+0|seen_alefMaksura-ar.fina=1+343|_c.seen.beh=0+0|meem-ar.init=0+425", - "RaqqSura.ttf": "twodotsverticalbelow-ar=1@339,-337+0|seen_alefMaksura-ar.fina=1+343|meem-ar.init=0+425" + "only": "RaqqSura.ttf", + "input": "كي", + "expectation": "twodotsverticalbelow-ar=1@339,-334+0|alefMaksura-ar.fina=1+282|kaf-ar.init=0@-36,0+729", + "variations": { + "MSHQ": 10.0 } }, { - "input": "ملى", - "features": { - "salt": true - }, - "expectation": { - "default": "alefMaksura-ar.fina.tooth=2+9|lam-ar.medi.round=1+95|_c.seen.beh=0+0|meem-ar.init=0+425", - "RaqqSura.ttf": "lam_alefMaksura-ar.fina=1+110|meem-ar.init=0+425" + "only": "RaqqSura.ttf", + "input": "كً", + "expectation": "fathatan-ar.alt=0@11,431+0|kaf-ar=0+896", + "variations": { + "MSHQ": 10.0 } }, { - "input": "نسى", - "features": { - "salt": true - }, - "expectation": { - "default": "seen_alefMaksura-ar.fina=1+343|dotabove-ar.beh=0@-9,392+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", - "RaqqSura.ttf": "seen_alefMaksura-ar.fina=1+343|dotabove-ar.beh=0@-15,380+0|behDotless-ar.init.high=0+100" + "only": "RaqqSura.ttf", + "input": "كَ", + "expectation": "fatha-ar=0@11,498+0|kaf-ar=0+896", + "variations": { + "MSHQ": 10.0 } }, { - "input": "نعى", - "features": { - "salt": true - }, - "expectation": { - "default": "alefMaksura-ar.fina.salt=2+282|_c.ain.yeh=1@-20,0+-5|ain-ar.medi=1+220|dotabove-ar.beh=0@-9,392+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", - "RaqqSura.ttf": "alefMaksura-ar.fina.salt=2+282|ain-ar.medi=1+202|dotabove-ar.beh=0@-15,380+0|behDotless-ar.init.high=0+100" + "only": "RaqqSura.ttf", + "input": "كے", + "expectation": "yehbarree-ar.fina.baseline=1+297|kaf-ar.init=0@-21,110+744", + "variations": { + "MSHQ": 10.0 } }, { - "input": "نفى", - "features": { - "salt": true - }, - "expectation": { - "default": "alefMaksura-ar.fina.salt=2+282|dotabove-ar=1@-59,329+0|_c.feh.medi.meem=1@-36,0+11|fehDotless-ar.medi=1@-71,0+306|dotabove-ar=0@2,299+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", - "RaqqSura.ttf": "alefMaksura-ar.fina.salt=2+282|dotabove-ar=1@1,329+0|fehDotless-ar.medi=1+377|dotabove-ar=0@-20,297+0|behDotless-ar.init=0+100" + "only": "RaqqSura.ttf", + "input": "لآ", + "expectation": "madda-ar=0@149,565+0|lam_alef-ar=0+542", + "variations": { + "MSHQ": 10.0 } }, { - "input": "هسي", - "features": { - "salt": true - }, - "expectation": { - "default": "twodotsverticalbelow-ar=1@339,-337+0|seen_alefMaksura-ar.fina=1+343|_c.feh.medi.beh=0+0|heh-ar.init=0+361", - "RaqqSura.ttf": "twodotsverticalbelow-ar=1@339,-337+0|seen_alefMaksura-ar.fina=1+343|heh-ar.init=0@-26,0+335" + "only": "RaqqSura.ttf", + "input": "لأ", + "expectation": "fatha-ar=0@352,599+0|lam_alef-ar=0+542", + "variations": { + "MSHQ": 10.0 } }, { - "input": "علي", - "features": { - "salt": 2 - }, - "expectation": { - "default": "twodotsverticalbelow-ar=2@449,-259+0|yehbarree-ar.fina=2+297|lam-ar.medi=1+125|_c.ain.init.beh=0+95|ain-ar.init=0@-50,0+640", - "RaqqSura.ttf": "twodotsverticalbelow-ar=1@311,-329+0|lam_alefMaksura-ar.fina=1+110|ain-ar.init=0+680" + "only": "RaqqSura.ttf", + "input": "لح", + "expectation": "hah-ar.fina.alt=1+407|lam-ar.init.hah1.alt=0@63,0+578", + "variations": { + "MSHQ": 10.0 } }, { - "input": "مني", - "features": { - "salt": 2 - }, - "expectation": { - "default": "twodotsverticalbelow-ar=2@449,-259+0|yehbarree-ar.fina=2+297|dotabove-ar.beh=1@8,294+0|behDotless-ar.medi=1+128|_c.seen.beh=0+0|meem-ar.init=0+645", - "RaqqSura.ttf": "twodotsverticalbelow-ar=1@311,-329+0|dotabove-ar=1@-10,297+0|behDotless_alefMaksura-ar.fina=1+110|meem-ar.init=0+425" + "only": "RaqqSura.ttf", + "input": "لم", + "expectation": "meem-ar.fina=1+567|lam-ar.init=0+123", + "variations": { + "MSHQ": 10.0 } }, { - "input": "بني", - "features": { - "ss01": true - }, - "expectation": { - "default": "alefMaksura-ar.fina.tooth=2+9|behDotless-ar.medi.round=1+108|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", - "RaqqSura.ttf": "behDotless_alefMaksura-ar.fina=1+110|behDotless-ar.init.high=0+100" + "only": "RaqqSura.ttf", + "input": "لي", + "expectation": "twodotsverticalbelow-ar=1@386,-339+0|alefMaksura-ar.fina.wide=1+267|lam-ar.init=0+123", + "variations": { + "MSHQ": 10.0 } }, { - "input": "نبي", - "features": { - "ss01": true - }, - "expectation": { - "default": "alefMaksura-ar.fina.tooth=2+9|behDotless-ar.medi.round=1+108|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", - "RaqqSura.ttf": "behDotless_alefMaksura-ar.fina=1+110|behDotless-ar.init.high=0+100" + "only": "RaqqSura.ttf", + "input": "لً", + "expectation": "fathatan-ar.alt=0@-75,483+0|lam-ar=0+186", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝١٠", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar.10=0+1117|ayah.010=1+0", - "RaqqSura.ttf": "endofayah-ar.10=0+1117|ayah.010=1+0" + "only": "RaqqSura.ttf", + "input": "لٍ", + "expectation": "kasratan-ar.alt=0@171,-277+0|lam-ar=0+186", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝١١", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "لَ", + "expectation": "fatha-ar=0@-75,550+0|lam-ar=0+186", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝١٢", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "لِ", + "expectation": "kasra-ar=0@171,-210+0|lam-ar=0+186", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝١٣", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "لے", + "expectation": "yehbarree-ar.fina.baseline=1+297|lam-ar.init.hah1=0@0,-5+783", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝١٤", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "ما", + "expectation": "alef-ar.fina=1+90|meem-ar.init=0+425", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝١٥", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar.05=0+400", - "RaqqSura.ttf": "endofayah-ar.05=0+400" + "only": "RaqqSura.ttf", + "input": "مح", + "expectation": "hah-ar.fina=1+417|meem-ar.init=0@0,115+425", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝١٦", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "مر", + "expectation": "reh-ar.fina=1+387|meem-ar.init.round=0@20,0+418", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝١٧", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "مم", + "expectation": "meem-ar.fina.round=1+554|meem-ar.init.round=0+398", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝١٨", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "من", + "expectation": "dotabove-ar=1@-3,90+0|noonghunna-ar.fina=1+250|meem-ar.init.round=0+398", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝١٩", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "مو", + "expectation": "waw-ar.fina.round=1+492|meem-ar.init.round=0+398", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٢٠", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar.10=0+1117|ayah.020=1+0", - "RaqqSura.ttf": "endofayah-ar.10=0+1117|ayah.020=1+0" + "only": "RaqqSura.ttf", + "input": "مے", + "expectation": "yehbarree-ar.fina.baseline=1+297|meem-ar.init=0@0,110+765", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٢١", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "نٍ", + "expectation": "kasratan-ar.alt=0@268,-193+0|dotabove-ar=0@5,191+0|noonghunna-ar=0+295", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٢٢", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "نِ", + "expectation": "kasra-ar=0@268,-126+0|dotabove-ar=0@5,191+0|noonghunna-ar=0+295", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٢٣", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "هح", + "expectation": "hah-ar.fina=1+417|heh-ar.init=0@0,115+461", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٢٤", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "هم", + "expectation": "meem-ar.fina.round=1+554|heh-ar.init.round=0+327", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٢٥", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar.05=0+400", - "RaqqSura.ttf": "endofayah-ar.05=0+400" + "only": "RaqqSura.ttf", + "input": "هن", + "expectation": "dotabove-ar=1@-3,90+0|noonghunna-ar.fina=1+250|heh-ar.init.round=0+327", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٢٦", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "هے", + "expectation": "yehbarree-ar.fina.baseline=1+297|heh-ar.init=0@0,110+761", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٢٧", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "وٕ", + "expectation": "kasra-ar=0@191,-179+0|waw-ar=0+516", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٢٨", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "ىٕ", + "expectation": "kasra-ar=0@155,-289+0|alefMaksura-ar=0+393", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٢٩", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "ىے", + "expectation": "yehbarree-ar.fina.baseline=1+297|behDotless-ar.init=0@0,110+760", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٣٠", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar.10=0+1117|ayah.030=1+0", - "RaqqSura.ttf": "endofayah-ar.10=0+1117|ayah.030=1+0" + "only": "RaqqSura.ttf", + "input": "◌ً", + "expectation": "fathatan-ar=0@148,615+0|dottedCircle=0+578", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٣١", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "◌ٌ", + "expectation": "dammatan-ar=0@-175,148+0|dottedCircle=0+578", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٣٢", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "◌ٍ", + "expectation": "kasratan-ar=0@148,-190+0|dottedCircle=0+578", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٣٣", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "◌َ", + "expectation": "fatha-ar=0@215,615+0|dottedCircle=0+578", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٣٤", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "◌ُ", + "expectation": "damma-ar=0@-175,215+0|dottedCircle=0+578", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٣٥", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar.05=0+400", - "RaqqSura.ttf": "endofayah-ar.05=0+400" + "only": "RaqqSura.ttf", + "input": "◌ِ", + "expectation": "kasra-ar=0@215,-190+0|dottedCircle=0+578", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٣٦", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "◌ٓ", + "expectation": "madda-ar=0@-105,429+0|dottedCircle=0+578", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٣٧", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "◌ٔ", + "expectation": "fatha-ar=0@215,615+0|dottedCircle=0+578", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٣٨", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "◌ٕ", + "expectation": "kasra-ar=0@215,-190+0|dottedCircle=0+578", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٣٩", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "لم تحاجون", + "expectation": "dotabove-ar=8@5,191+0|noonghunna-ar=8+295|waw-ar.fina=7+477|dotbelow-ar=6@213,-112+0|hah-ar.init=6+703|alef-ar.fina=5+90|hah-ar.medi.alt=4+135|twodotsverticalabove-ar.beh=3@14,407+0|behDotless-ar.init.hah=3@63,5+572|space.mark=2+0|meem-ar.fina=1+567|lam-ar.init=0+123", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٤٠", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar.10=0+1117|ayah.040=1+0", - "RaqqSura.ttf": "endofayah-ar.10=0+1117|ayah.040=1+0" + "only": "RaqqSura.ttf", + "input": "ئفة", + "expectation": "twodotsverticalabove-ar=2@186,388+0|heh-ar.fina=2+336|dotabove-ar=1@1,329+0|fehDotless-ar.medi=1+377|fatha-ar=0@-32,339+0|behDotless-ar.init=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٤١", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "ئِم", + "expectation": "meem-ar.fina=2+567|kasra-ar=0@55,-111+0|behDotless-ar.init=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٤٢", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "اطح", + "expectation": "hah-ar.fina=2+417|tah-ar.init.hah1=1+765|alef-ar=0+642", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٤٣", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "الح", + "expectation": "hah-ar.fina.alt=2+407|lam-ar.init.hah1.alt=1@63,0+578|alef-ar=0+642", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٤٤", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "الے", + "expectation": "yehbarree-ar.fina.baseline=2+297|lam-ar.init.short=1@0,110+760|alef-ar.lam=0+642", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٤٥", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar.05=0+400", - "RaqqSura.ttf": "endofayah-ar.05=0+400" + "only": "RaqqSura.ttf", + "input": "ببا", + "expectation": "alef-ar.fina=2+90|dotbelow-ar=1@-19,-110+0|behDotless-ar.medi=1+100|dotbelow-ar=0@51,-46+0|behDotless-ar.init.high=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٤٦", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "ببب", + "expectation": "dotbelow-ar=2@834,-111+0|behDotless-ar.fina=2+984|dotbelow-ar=1@-13,-110+0|behDotless-ar.medi.high=1+100|dotbelow-ar=0@72,-46+0|behDotless-ar.init=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٤٧", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "ببن", + "expectation": "dotabove-ar=2@-3,90+0|noonghunna-ar.fina=2+250|dotbelow-ar=1@50,-110+0|behDotless-ar.medi.round=1@-6,0+104|dotbelow-ar=0@51,-46+0|behDotless-ar.init.high=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٤٨", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "بسم", + "expectation": "meem-ar.fina=2+567|seen-ar.medi=1+345|dotbelow-ar=0@51,-46+0|behDotless-ar.init.high=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٤٩", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "بسن", + "expectation": "dotabove-ar=2@-3,90+0|noonghunna-ar.fina=2+250|seen-ar.medi=1+345|dotbelow-ar=0@51,-46+0|behDotless-ar.init.high=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٥٠", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar.10=0+1117|ayah.050=1+0", - "RaqqSura.ttf": "endofayah-ar.10=0+1117|ayah.050=1+0" + "only": "RaqqSura.ttf", + "input": "بسي", + "expectation": "twodotsverticalbelow-ar=1@339,-337+0|seen_alefMaksura-ar.fina=1+343|dotbelow-ar=0@51,-46+0|behDotless-ar.init.high=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٥١", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "بسٍ", + "expectation": "kasratan-ar.alt=1@268,-383+0|seen-ar.fina=1+484|dotbelow-ar=0@51,-46+0|behDotless-ar.init.high=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٥٢", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "بشي", + "expectation": "twodotsverticalbelow-ar=1@339,-337+0|threedotshorizontalabove-ar.3=1@-35,167+0|seen_alefMaksura-ar.fina=1+343|dotbelow-ar=0@51,-46+0|behDotless-ar.init.high=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٥٣", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "بعا", + "expectation": "alef-ar.fina=2+90|ain-ar.medi=1+202|dotbelow-ar=0@51,-46+0|behDotless-ar.init.high=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٥٤", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "بعد", + "expectation": "dal-ar.fina=2+875|ain-ar.medi=1+202|dotbelow-ar=0@51,-46+0|behDotless-ar.init.high=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٥٥", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar.05=0+400", - "RaqqSura.ttf": "endofayah-ar.05=0+400" + "only": "RaqqSura.ttf", + "input": "بعض", + "expectation": "dotabove-ar=2@398,247+0|sad-ar.fina=2+876|ain-ar.medi=1+202|dotbelow-ar=0@51,-46+0|behDotless-ar.init.high=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٥٦", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "بعن", + "expectation": "dotabove-ar=2@-3,90+0|noonghunna-ar.fina=2+250|ain-ar.medi=1+202|dotbelow-ar=0@51,-46+0|behDotless-ar.init.high=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٥٧", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "بـد", + "expectation": "dal-ar.fina=2+875|kashida-ar=1+100|dotbelow-ar=0@72,-46+0|behDotless-ar.init=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٥٨", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "بـك", + "expectation": "kaf-ar.fina=2+889|kashida-ar=1+100|dotbelow-ar=0@72,-46+0|behDotless-ar.init=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٥٩", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "بفخ", + "expectation": "dotabove-ar=2@253,213+0|hah-ar.fina=2+417|dotabove-ar=1@1,444+0|fehDotless-ar.medi=1@0,115+377|dotbelow-ar=0@72,69+0|behDotless-ar.init=0@0,115+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٦٠", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar.10=0+1117|ayah.060=1+0", - "RaqqSura.ttf": "endofayah-ar.10=0+1117|ayah.060=1+0" + "only": "RaqqSura.ttf", + "input": "بفن", + "expectation": "dotabove-ar=2@-3,90+0|noonghunna-ar.fina=2+250|dotabove-ar=1@1,329+0|fehDotless-ar.medi=1+377|dotbelow-ar=0@72,-46+0|behDotless-ar.init=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٦١", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "بكم", + "expectation": "meem-ar.fina=2+567|kaf-ar.medi=1@-12,0+746|dotbelow-ar=0@72,-46+0|behDotless-ar.init=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٦٢", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "بلا", + "expectation": "lam_alef-ar.fina=1+522|dotbelow-ar=0@72,-46+0|behDotless-ar.init=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٦٣", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "بلٍ", + "expectation": "kasratan-ar.alt=1@171,-277+0|lam-ar.fina=1+177|dotbelow-ar=0@72,-46+0|behDotless-ar.init=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٦٤", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "بلِ", + "expectation": "kasra-ar=1@171,-210+0|lam-ar.fina=1+177|dotbelow-ar=0@72,-46+0|behDotless-ar.init=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٦٥", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar.05=0+400", - "RaqqSura.ttf": "endofayah-ar.05=0+400" + "only": "RaqqSura.ttf", + "input": "بما", + "expectation": "alef-ar.fina=2+90|meem-ar.medi=1@-28,0+352|dotbelow-ar=0@72,-46+0|behDotless-ar.init=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٦٦", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "بمح", + "expectation": "hah-ar.fina=2+417|meem-ar.medi=1@-28,115+352|dotbelow-ar=0@72,29+0|behDotless-ar.init=0@0,115+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٦٧", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "بمن", + "expectation": "dotabove-ar=2@-3,90+0|noonghunna-ar.fina=2+250|meem-ar.medi.round2=1+398|dotbelow-ar=0@72,-46+0|behDotless-ar.init=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٦٨", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "بنم", + "expectation": "meem-ar.fina.round=2+554|dotabove-ar.beh=1@-11,297+0|behDotless-ar.medi.round=1@-6,0+104|dotbelow-ar=0@51,-46+0|behDotless-ar.init.high=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٦٩", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "بني", + "expectation": "twodotsverticalbelow-ar=1@311,-329+0|dotabove-ar=1@-10,297+0|behDotless_alefMaksura-ar.fina=1+110|dotbelow-ar=0@51,-46+0|behDotless-ar.init.high=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٧٠", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar.10=0+1117|ayah.070=1+0", - "RaqqSura.ttf": "endofayah-ar.10=0+1117|ayah.070=1+0" + "only": "RaqqSura.ttf", + "input": "بنٍ", + "expectation": "kasratan-ar.alt=1@260,-361+0|dotabove-ar=1@-3,90+0|noonghunna-ar.fina=1+250|dotbelow-ar=0@38,-46+0|behDotless-ar.init=0@-34,0+66", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٧١", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "بهح", + "expectation": "hah-ar.fina=2+417|heh-ar.medi=1@0,115+354|dotbelow-ar=0@72,69+0|behDotless-ar.init.med=0@0,115+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٧٢", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "بهم", + "expectation": "meem-ar.fina.round=2+554|heh-ar.medi.round=1+320|dotbelow-ar=0@72,-46+0|behDotless-ar.init.med=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٧٣", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "بهن", + "expectation": "dotabove-ar=2@-3,90+0|noonghunna-ar.fina=2+250|heh-ar.medi.round=1+320|dotbelow-ar=0@72,-46+0|behDotless-ar.init.med=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٧٤", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "بهو", + "expectation": "waw-ar.fina.round=2+492|heh-ar.medi.round=1+320|dotbelow-ar=0@72,-46+0|behDotless-ar.init.med=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٧٥", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar.05=0+400", - "RaqqSura.ttf": "endofayah-ar.05=0+400" + "only": "RaqqSura.ttf", + "input": "بيت", + "expectation": "twodotsverticalabove-ar=2@803,264+0|behDotless-ar.fina=2+984|twodotsverticalbelow-ar=1@-13,-137+0|behDotless-ar.medi.high=1+100|dotbelow-ar=0@72,-46+0|behDotless-ar.init=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٧٦", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "بين", + "expectation": "dotabove-ar=2@-3,90+0|noonghunna-ar.fina=2+250|twodotsverticalbelow-ar=1@50,-137+0|behDotless-ar.medi.round=1@-6,0+104|dotbelow-ar=0@51,-46+0|behDotless-ar.init.high=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٧٧", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "بُل", + "expectation": "lam-ar.fina=2+177|damma-ar=0@-85,98+0|dotbelow-ar=0@72,-46+0|behDotless-ar.init=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٧٨", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "تبع", + "expectation": "ain-ar.fina=2+262|dotbelow-ar=1@-19,-110+0|behDotless-ar.medi=1+100|twodotsverticalabove-ar.beh=0@-45,388+0|behDotless-ar.init.high=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٧٩", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "تتا", + "expectation": "alef-ar.fina=2+90|twodotsverticalabove-ar.vert.beh=1@-18,301+0|behDotless-ar.medi=1+100|twodotsverticalabove-ar.beh=0@-45,388+0|behDotless-ar.init.high=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٨٠", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar.10=0+1117|ayah.080=1+0", - "RaqqSura.ttf": "endofayah-ar.10=0+1117|ayah.080=1+0" + "only": "RaqqSura.ttf", + "input": "تعا", + "expectation": "alef-ar.fina=2+90|ain-ar.medi=1+202|twodotsverticalabove-ar.beh=0@-45,388+0|behDotless-ar.init.high=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٨١", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "تعب", + "expectation": "dotbelow-ar=2@834,-111+0|behDotless-ar.fina=2+984|ain-ar.medi=1+202|twodotsverticalabove-ar.beh=0@-45,388+0|behDotless-ar.init.high=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٨٢", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "تعل", + "expectation": "lam-ar.fina=2+177|ain-ar.medi=1+202|twodotsverticalabove-ar.beh=0@-45,388+0|behDotless-ar.init.high=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٨٣", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "ثثا", + "expectation": "alef-ar.fina=2+90|threedotsupabove-ar.vert.beh=1@-18,301+0|behDotless-ar.medi=1+100|threedotsupabove-ar.beh=0@-75,388+0|behDotless-ar.init.high=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٨٤", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "ثغر", + "expectation": "reh-ar.fina=2+387|dotabove-ar=1@-74,223+0|ain-ar.medi=1+202|threedotsupabove-ar.beh=0@-75,388+0|behDotless-ar.init.high=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٨٥", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar.05=0+400", - "RaqqSura.ttf": "endofayah-ar.05=0+400" + "only": "RaqqSura.ttf", + "input": "ججا", + "expectation": "alef-ar.fina=2+90|dotbelow-ar=1@213,-112+0|hah-ar.medi=1+133|dotbelow-ar=0@400,-17+0|hah-ar.init.hah=0@0,122+579", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٨٦", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "جلح", + "expectation": "hah-ar.fina=2+417|lam-ar.medi.hah1=1+125|dotbelow-ar=0@213,3+0|hah-ar.init=0@0,115+703", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٨٧", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "جنح", + "expectation": "hah-ar.fina=2+417|dotabove-ar.beh=1@-15,412+0|behDotless-ar.medi=1@0,115+100|dotbelow-ar=0@213,3+0|hah-ar.init=0@0,115+703", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٨٨", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "جنى", + "expectation": "dotabove-ar=1@-10,297+0|behDotless_alefMaksura-ar.fina=1+110|dotbelow-ar=0@213,-112+0|hah-ar.init=0+703", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٨٩", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "حال", + "expectation": "lam-ar.short=2+186|alef-ar.fina.lam=1+90|hah-ar.init=0+703", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٩٠", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar.10=0+1117|ayah.090=1+0", - "RaqqSura.ttf": "endofayah-ar.10=0+1117|ayah.090=1+0" + "only": "RaqqSura.ttf", + "input": "حبا", + "expectation": "alef-ar.fina=2+90|dotbelow-ar=1@-19,-110+0|behDotless-ar.medi=1+100|hah-ar.init=0+703", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٩١", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "حبب", + "expectation": "dotbelow-ar=2@834,-111+0|behDotless-ar.fina=2+984|dotbelow-ar=1@-13,-110+0|behDotless-ar.medi.high=1+100|hah-ar.init=0+703", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٩٢", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "حبر", + "expectation": "reh-ar.fina=2+387|dotbelow-ar=1@-19,-140+0|behDotless-ar.medi=1+100|hah-ar.init=0+703", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٩٣", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "حبه", + "expectation": "heh-ar.fina=2+336|dotbelow-ar=1@-13,-110+0|behDotless-ar.medi.med=1+100|hah-ar.init=0+703", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٩٤", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "حبو", + "expectation": "waw-ar.fina=2+477|dotbelow-ar=1@-29,-140+0|behDotless-ar.medi=1@-10,0+90|hah-ar.init=0+703", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٩٥", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar.05=0+400", - "RaqqSura.ttf": "endofayah-ar.05=0+400" + "only": "RaqqSura.ttf", + "input": "حبى", + "expectation": "dotbelow-ar=1@-14,-110+0|behDotless_alefMaksura-ar.fina=1+110|hah-ar.init=0+703", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٩٦", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "حتى", + "expectation": "twodotsverticalabove-ar=1@-40,305+0|behDotless_alefMaksura-ar.fina=1+110|hah-ar.init=0+703", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٩٧", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "حجج", + "expectation": "dotbelow-ar=2@571,-122+0|hah-ar.fina=2+417|dotbelow-ar=1@401,-25+0|hah-ar.medi.hah=1@0,115+109|hah-ar.init.hah=0@0,237+579", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٩٨", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "حسا", + "expectation": "alef-ar.fina=2+90|seen-ar.medi.low=1+433|hah-ar.init=0@5,0+708", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٩٩", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "حضا", + "expectation": "alef-ar.fina=2+90|dotabove-ar=1@310,247+0|sad-ar.medi=1+758|hah-ar.init=0+703", + "variations": { + "MSHQ": 10.0 } }, { - "input": "ءامن", - "expectation": { - "default": "dotabove-ar=3@-3,101+0|noonghunna-ar.fina=3+250|meem-ar.init.round=2+398|madda-ar=1@241,551+0|alef-ar=1@379,0+1037|hamza-ar=0+0", - "RaqqSura.ttf": "dotabove-ar=3@-3,90+0|noonghunna-ar.fina=3+250|meem-ar.init.round=2+398|madda-ar=1@-158,551+0|alef-ar=1@-21,0+621|hamza-ar=0+0" + "only": "RaqqSura.ttf", + "input": "حطا", + "expectation": "alef-ar.fina.short=2+102|tah-ar.medi=1+758|hah-ar.init=0+703", + "variations": { + "MSHQ": 10.0 } }, { - "input": "أضاء", - "expectation": { - "default": "madda-ar=3@-151,560+0|alef-ar.fina=2+101|dotabove-ar=1@310,247+0|_c.seen.beh=1+0|sad-ar.init=1+765|fatha-ar=0@437,547+0|alef-ar=0@365,0+1023", - "RaqqSura.ttf": "madda-ar=3@-161,560+0|alef-ar.fina=2+90|dotabove-ar=1@310,247+0|sad-ar.init=1+765|fatha-ar=0@38,547+0|alef-ar=0@-35,0+607" + "only": "RaqqSura.ttf", + "input": "حعا", + "expectation": "alef-ar.fina=2+90|ain-ar.medi=1+202|hah-ar.init=0+703", + "variations": { + "MSHQ": 10.0 } }, { - "input": "ابطح", - "expectation": { - "default": "hah-ar.fina=3+417|tah-ar.medi.hah1=2+758|dotbelow-ar=1@51,69+0|behDotless-ar.init=1@-21,115+109|alef-ar=0@390,0+1048", - "RaqqSura.ttf": "hah-ar.fina=3+417|tah-ar.medi.hah1=2+758|dotbelow-ar=1@72,69+0|behDotless-ar.init=1@0,115+100|alef-ar=0+642" + "only": "RaqqSura.ttf", + "input": "حكا", + "expectation": "alef-ar.fina=2+90|kaf-ar.medi=1@-5,0+753|hah-ar.init=0+703", + "variations": { + "MSHQ": 10.0 } }, { - "input": "اطيح", - "expectation": { - "default": "hah-ar.fina=3+417|twodotsverticalbelow-ar=2@404,-42+0|behDotless-ar.medi=2@0,115+128|_c.seen.beh=1@0,115+0|tah-ar.init.hah1=1+765|alef-ar=0@400,0+1058", - "RaqqSura.ttf": "hah-ar.fina=3+417|twodotsverticalbelow-ar=2@376,-42+0|behDotless-ar.medi=2@0,115+100|tah-ar.init.hah1=1+765|alef-ar=0+642" + "only": "RaqqSura.ttf", + "input": "حلا", + "expectation": "lam_alef-ar.fina=1+522|hah-ar.init=0@-63,0+640", + "variations": { + "MSHQ": 10.0 } }, { - "input": "افنے", - "expectation": { - "default": "yehbarree-ar.fina=3+297|dotabove-ar.beh=2@8,294+0|behDotless-ar.medi=2+128|dotabove-ar=1@-1,373+0|_c.feh.init.beh=1+174|fehDotless-ar.init=1@-114,0+360|alef-ar=0@387,0+1045", - "RaqqSura.ttf": "yehbarree-ar.fina=3+297|dotabove-ar.beh=2@-15,297+0|behDotless-ar.medi=2+100|dotabove-ar=1@-61,373+0|fehDotless-ar.init=1+664|alef-ar=0@-13,0+629" + "only": "RaqqSura.ttf", + "input": "حلن", + "expectation": "dotabove-ar=2@-3,90+0|noonghunna-ar.fina=2+250|lam-ar.medi.round=1+95|hah-ar.init=0+703", + "variations": { + "MSHQ": 10.0 } }, { - "input": "الحا", - "expectation": { - "default": "alef-ar.fina=3+101|_c.hah.beh=2+7|hah-ar.medi.alt=2+135|lam-ar.init.hah1.alt=1@63,5+578|alef-ar=0@400,0+1058", - "RaqqSura.ttf": "alef-ar.fina=3+90|hah-ar.medi.alt=2+135|lam-ar.init.hah1.alt=1@63,5+578|alef-ar=0+642" + "only": "RaqqSura.ttf", + "input": "حما", + "expectation": "alef-ar.fina=2+90|meem-ar.medi=1@-28,0+352|hah-ar.init=0@-120,0+583", + "variations": { + "MSHQ": 10.0 } }, { - "input": "الحج", - "expectation": { - "default": "dotbelow-ar=3@571,-122+0|hah-ar.fina=3+417|hah-ar.medi.hah.alt=2@0,115+109|lam-ar.init.hah2.alt=1@63,5+578|alef-ar=0@400,0+1058", - "RaqqSura.ttf": "dotbelow-ar=3@571,-122+0|hah-ar.fina=3+417|hah-ar.medi.hah.alt=2@0,115+109|lam-ar.init.hah2.alt=1@63,5+578|alef-ar=0+642" + "only": "RaqqSura.ttf", + "input": "حمم", + "expectation": "meem-ar.fina.round=2+554|meem-ar.medi.round2=1+398|hah-ar.init=0+703", + "variations": { + "MSHQ": 10.0 } }, { - "input": "الله", - "expectation": { - "default": "lam_lam_heh-ar=1+573|alef-ar=0@395,0+1053", - "RaqqSura.ttf": "lam_lam_heh-ar=1+573|alef-ar=0+642" + "only": "RaqqSura.ttf", + "input": "حها", + "expectation": "alef-ar.fina=2+90|heh-ar.medi=1@-26,0+328|hah-ar.init=0+703", + "variations": { + "MSHQ": 10.0 } }, { - "input": "انحح", - "expectation": { - "default": "hah-ar.fina=3+417|hah-ar.medi.hah.alt=2@0,115+109|dotabove-ar.beh=1@44,499+0|behDotless-ar.init.hah=1@63,105+572|alef-ar=0@400,0+1058", - "RaqqSura.ttf": "hah-ar.fina=3+417|hah-ar.medi.hah.alt=2@0,115+109|dotabove-ar.beh=1@44,499+0|behDotless-ar.init.hah=1@63,105+572|alef-ar=0+642" + "only": "RaqqSura.ttf", + "input": "حهم", + "expectation": "meem-ar.fina.round=2+554|heh-ar.medi.round=1+320|hah-ar.init=0+703", + "variations": { + "MSHQ": 10.0 } }, { - "input": "اوتے", - "expectation": { - "default": "yehbarree-ar.fina.baseline=3+297|twodotsverticalabove-ar=2@-28,417+0|behDotless-ar.init=2@0,110+770|waw-ar=1@380,0+889|alef-ar=0@378,0+1036", - "RaqqSura.ttf": "yehbarree-ar.fina.baseline=3+297|twodotsverticalabove-ar=2@-50,415+0|behDotless-ar.init=2@0,110+760|waw-ar=1@-20,0+496|alef-ar=0@-22,0+620" + "only": "RaqqSura.ttf", + "input": "حير", + "expectation": "reh-ar.fina=2+387|twodotsverticalbelow-ar=1@-19,-167+0|behDotless-ar.medi=1+100|hah-ar.init=0+703", + "variations": { + "MSHQ": 10.0 } }, { - "input": "بببا", - "expectation": { - "default": "alef-ar.fina=3+101|dotbelow-ar=2@9,-110+0|_c.seen.beh=2+0|behDotless-ar.medi=2+128|dotbelow-ar=1@14,-110+0|_c.seen.beh=1+0|behDotless-ar.medi.high=1+128|dotbelow-ar=0@72,-46+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", - "RaqqSura.ttf": "alef-ar.fina=3+90|dotbelow-ar=2@-19,-110+0|behDotless-ar.medi=2+100|dotbelow-ar=1@-13,-110+0|behDotless-ar.medi.high=1+100|dotbelow-ar=0@72,-46+0|behDotless-ar.init=0+100" + "only": "RaqqSura.ttf", + "input": "حيم", + "expectation": "meem-ar.fina.round=2+554|twodotsverticalbelow-ar=1@-20,-137+0|behDotless-ar.medi.round=1@-6,0+104|hah-ar.init=0+703", + "variations": { + "MSHQ": 10.0 } }, { - "input": "ببسه", - "expectation": { - "default": "heh-ar.fina=3+339|_c.seen.beh=2+0|seen-ar.medi.low=2+411|dotbelow-ar=1@17,-110+0|_c.seen.beh=1+0|behDotless-ar.medi.med=1+128|dotbelow-ar=0@81,-46+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", - "RaqqSura.ttf": "heh-ar.fina=3+336|seen-ar.medi=2+345|dotbelow-ar=1@-13,-110+0|behDotless-ar.medi.high=1+100|dotbelow-ar=0@51,-46+0|behDotless-ar.init.high=0+100" + "only": "RaqqSura.ttf", + "input": "حيو", + "expectation": "waw-ar.fina=2+477|twodotsverticalbelow-ar=1@-29,-167+0|behDotless-ar.medi=1@-10,0+90|hah-ar.init=0+703", + "variations": { + "MSHQ": 10.0 } }, { - "input": "ببسي", - "expectation": { - "default": "twodotsverticalbelow-ar=2@339,-337+0|seen_alefMaksura-ar.fina=2+343|dotbelow-ar=1@14,-110+0|_c.seen.beh=1+0|behDotless-ar.medi.high=1+128|dotbelow-ar=0@72,-46+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", - "RaqqSura.ttf": "twodotsverticalbelow-ar=2@339,-337+0|seen_alefMaksura-ar.fina=2+343|dotbelow-ar=1@-13,-110+0|behDotless-ar.medi.high=1+100|dotbelow-ar=0@72,-46+0|behDotless-ar.init=0+100" + "only": "RaqqSura.ttf", + "input": "حپر", + "expectation": "reh-ar.fina=2+387|threedotsdownbelow-ar=1@-19,-192+0|behDotless-ar.medi=1+100|hah-ar.init=0+703", + "variations": { + "MSHQ": 10.0 } }, { - "input": "بتمح", - "expectation": { - "default": "hah-ar.fina=3+417|meem-ar.medi.round=2@0,115+425|twodotsverticalabove-ar.beh=1@-59,393+0|behDotless-ar.medi.round=1@0,115+108|dotbelow-ar=0@81,69+0|_c.seen.beh=0@0,115+0|behDotless-ar.init.high=0@0,115+130", - "RaqqSura.ttf": "hah-ar.fina=3+417|meem-ar.medi.round=2@0,115+425|twodotsverticalabove-ar.beh=1@-41,420+0|behDotless-ar.medi.round=1@-6,115+104|dotbelow-ar=0@51,69+0|behDotless-ar.init.high=0@0,115+100" + "only": "RaqqSura.ttf", + "input": "حپو", + "expectation": "waw-ar.fina=2+477|threedotsdownbelow-ar=1@-29,-192+0|behDotless-ar.medi=1@-10,0+90|hah-ar.init=0+703", + "variations": { + "MSHQ": 10.0 } }, { - "input": "بسبه", - "expectation": { - "default": "heh-ar.fina=3+339|dotbelow-ar=2@17,-110+0|_c.seen.beh=2+0|behDotless-ar.medi.med=2+128|_c.seen.beh=1+0|seen-ar.medi.low=1+411|dotbelow-ar=0@72,-46+0|_c.seen.beh=0+0|behDotless-ar.init.med=0+130", - "RaqqSura.ttf": "heh-ar.fina=3+336|dotbelow-ar=2@-13,-110+0|behDotless-ar.medi.med=2+100|seen-ar.medi=1+345|dotbelow-ar=0@51,-46+0|behDotless-ar.init.high=0+100" + "only": "RaqqSura.ttf", + "input": "سبا", + "expectation": "alef-ar.fina=2+90|dotbelow-ar=1@-19,-110+0|behDotless-ar.medi=1+100|seen-ar.init=0+345", + "variations": { + "MSHQ": 10.0 } }, { - "input": "بسسي", - "expectation": { - "default": "twodotsverticalbelow-ar=2@339,-337+0|seen_alefMaksura-ar.fina=2+343|_c.seen.beh=1+0|seen-ar.medi.low=1+411|dotbelow-ar=0@72,-46+0|_c.seen.beh=0+0|behDotless-ar.init.med=0+130", - "RaqqSura.ttf": "twodotsverticalbelow-ar=2@339,-337+0|seen_alefMaksura-ar.fina=2+343|seen-ar.medi=1+345|dotbelow-ar=0@51,-46+0|behDotless-ar.init.high=0+100" + "only": "RaqqSura.ttf", + "input": "سبب", + "expectation": "dotbelow-ar=2@834,-111+0|behDotless-ar.fina=2+984|dotbelow-ar=1@-13,-110+0|behDotless-ar.medi.high=1+100|seen-ar.init=0+345", + "variations": { + "MSHQ": 10.0 } }, { - "input": "بصبا", - "expectation": { - "default": "alef-ar.fina=3+101|dotbelow-ar=2@9,-110+0|_c.seen.beh=2+0|behDotless-ar.medi=2+128|_c.seen.beh=1+0|sad-ar.medi=1+758|dotbelow-ar=0@51,-46+0|behDotless-ar.init=0@-21,0+109", - "RaqqSura.ttf": "alef-ar.fina=3+90|dotbelow-ar=2@-19,-110+0|behDotless-ar.medi=2+100|sad-ar.medi=1+758|dotbelow-ar=0@72,-46+0|behDotless-ar.init=0+100" + "only": "RaqqSura.ttf", + "input": "سبه", + "expectation": "heh-ar.fina=2+336|dotbelow-ar=1@-13,-110+0|behDotless-ar.medi.med=1+100|seen-ar.init=0+345", + "variations": { + "MSHQ": 10.0 } }, { - "input": "بصسي", - "expectation": { - "default": "twodotsverticalbelow-ar=2@339,-337+0|seen_alefMaksura-ar.fina=2+343|_c.seen.beh=1+0|sad-ar.medi=1+758|dotbelow-ar=0@51,-46+0|behDotless-ar.init=0@-21,0+109", - "RaqqSura.ttf": "twodotsverticalbelow-ar=2@339,-337+0|seen_alefMaksura-ar.fina=2+343|sad-ar.medi=1+758|dotbelow-ar=0@72,-46+0|behDotless-ar.init=0+100" + "only": "RaqqSura.ttf", + "input": "سسا", + "expectation": "alef-ar.fina=2+90|seen-ar.medi=1+345|seen-ar.init=0+345", + "variations": { + "MSHQ": 10.0 } }, { - "input": "بطبا", - "expectation": { - "default": "alef-ar.fina=3+101|dotbelow-ar=2@9,-110+0|_c.seen.beh=2+0|behDotless-ar.medi=2+128|_c.seen.beh=1+0|tah-ar.medi=1+758|dotbelow-ar=0@51,-46+0|behDotless-ar.init=0@-21,0+109", - "RaqqSura.ttf": "alef-ar.fina=3+90|dotbelow-ar=2@-19,-110+0|behDotless-ar.medi=2+100|tah-ar.medi=1+758|dotbelow-ar=0@72,-46+0|behDotless-ar.init=0+100" + "only": "RaqqSura.ttf", + "input": "سسي", + "expectation": "twodotsverticalbelow-ar=1@339,-337+0|seen_alefMaksura-ar.fina=1+343|seen-ar.init=0+345", + "variations": { + "MSHQ": 10.0 } }, { - "input": "بطسي", - "expectation": { - "default": "twodotsverticalbelow-ar=2@339,-337+0|seen_alefMaksura-ar.fina=2+343|_c.seen.beh=1+0|tah-ar.medi=1+758|dotbelow-ar=0@51,-46+0|behDotless-ar.init=0@-21,0+109", - "RaqqSura.ttf": "twodotsverticalbelow-ar=2@339,-337+0|seen_alefMaksura-ar.fina=2+343|tah-ar.medi=1+758|dotbelow-ar=0@72,-46+0|behDotless-ar.init=0+100" + "only": "RaqqSura.ttf", + "input": "سضا", + "expectation": "alef-ar.fina=2+90|dotabove-ar=1@310,247+0|sad-ar.medi=1+758|seen-ar.init=0@-15,0+330", + "variations": { + "MSHQ": 10.0 } }, { - "input": "بعبه", - "expectation": { - "default": "heh-ar.fina=3+339|dotbelow-ar=2@17,-110+0|_c.seen.beh=2+0|behDotless-ar.medi.med=2+128|_c.ain.medi.beh=1+66|ain-ar.medi=1+220|dotbelow-ar=0@81,-46+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", - "RaqqSura.ttf": "heh-ar.fina=3+336|dotbelow-ar=2@-13,-110+0|behDotless-ar.medi.med=2+100|ain-ar.medi=1+202|dotbelow-ar=0@51,-46+0|behDotless-ar.init.high=0+100" + "only": "RaqqSura.ttf", + "input": "سطا", + "expectation": "alef-ar.fina.short=2+102|tah-ar.medi=1+758|seen-ar.init=0@-15,0+330", + "variations": { + "MSHQ": 10.0 } }, { - "input": "بعجل", - "expectation": { - "default": "lam-ar.fina=3+177|dotbelow-ar=2@220,-112+0|_c.hah.beh=2+7|hah-ar.medi=2+133|ain-ar.medi=1@0,122+220|dotbelow-ar=0@131,126+0|_c.seen.beh=0@0,122+0|behDotless-ar.init.high=0@0,122+240", - "RaqqSura.ttf": "lam-ar.fina=3+177|dotbelow-ar=2@213,-112+0|hah-ar.medi=2+133|ain-ar.medi=1@0,122+202|dotbelow-ar=0@51,76+0|behDotless-ar.init.high=0@0,122+260" + "only": "RaqqSura.ttf", + "input": "سعا", + "expectation": "alef-ar.fina=2+90|ain-ar.medi=1+202|seen-ar.init=0+345", + "variations": { + "MSHQ": 10.0 } }, { - "input": "بعسي", - "expectation": { - "default": "twodotsverticalbelow-ar=2@339,-337+0|seen_alefMaksura-ar.fina=2+343|_c.ain.medi.beh=1+66|ain-ar.medi=1+220|dotbelow-ar=0@81,-46+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", - "RaqqSura.ttf": "twodotsverticalbelow-ar=2@339,-337+0|seen_alefMaksura-ar.fina=2+343|ain-ar.medi=1+202|dotbelow-ar=0@51,-46+0|behDotless-ar.init.high=0+100" + "only": "RaqqSura.ttf", + "input": "سكا", + "expectation": "alef-ar.fina=2+90|kaf-ar.medi=1@-5,0+753|seen-ar.init=0@-15,0+330", + "variations": { + "MSHQ": 10.0 } }, { - "input": "بــك", - "expectation": { - "default": "kaf-ar.fina=3+889|kashida-ar=2+100|kashida-ar=1+100|dotbelow-ar=0@72,-46+0|behDotless-ar.init=0+130", - "RaqqSura.ttf": "kaf-ar.fina=3+889|kashida-ar=2+100|kashida-ar=1+100|dotbelow-ar=0@72,-46+0|behDotless-ar.init=0+100" + "only": "RaqqSura.ttf", + "input": "سلا", + "expectation": "lam_alef-ar.fina=1+522|seen-ar.init=0+345", + "variations": { + "MSHQ": 10.0 } }, { - "input": "بفبه", - "expectation": { - "default": "heh-ar.fina=3+339|dotbelow-ar=2@17,-110+0|_c.seen.beh=2+0|behDotless-ar.medi.med=2+128|dotabove-ar=1@1,329+0|_c.feh.medi.beh=1+0|fehDotless-ar.medi=1+377|dotbelow-ar=0@72,-46+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", - "RaqqSura.ttf": "heh-ar.fina=3+336|dotbelow-ar=2@-13,-110+0|behDotless-ar.medi.med=2+100|dotabove-ar=1@1,329+0|fehDotless-ar.medi=1+377|dotbelow-ar=0@72,-46+0|behDotless-ar.init=0+100" + "only": "RaqqSura.ttf", + "input": "سلن", + "expectation": "dotabove-ar=2@-3,90+0|noonghunna-ar.fina=2+250|lam-ar.medi.round=1+95|seen-ar.init=0+345", + "variations": { + "MSHQ": 10.0 } }, { - "input": "بفسي", - "expectation": { - "default": "twodotsverticalbelow-ar=2@339,-337+0|seen_alefMaksura-ar.fina=2+343|dotabove-ar=1@1,329+0|_c.feh.medi.beh=1+0|fehDotless-ar.medi=1+377|dotbelow-ar=0@72,-46+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", - "RaqqSura.ttf": "twodotsverticalbelow-ar=2@339,-337+0|seen_alefMaksura-ar.fina=2+343|dotabove-ar=1@1,329+0|fehDotless-ar.medi=1+377|dotbelow-ar=0@72,-46+0|behDotless-ar.init=0+100" + "only": "RaqqSura.ttf", + "input": "سما", + "expectation": "alef-ar.fina=2+90|meem-ar.medi=1@-28,0+352|seen-ar.init=0+345", + "variations": { + "MSHQ": 10.0 } }, { - "input": "بكسي", - "expectation": { - "default": "twodotsverticalbelow-ar=2@339,-337+0|seen_alefMaksura-ar.fina=2+343|kaf-ar.medi.alt=1@-5,0+753|dotbelow-ar=0@51,-46+0|behDotless-ar.init=0@-21,0+109", - "RaqqSura.ttf": "twodotsverticalbelow-ar=2@339,-337+0|seen_alefMaksura-ar.fina=2+343|kaf-ar.medi=1@-5,0+753|dotbelow-ar=0@72,-46+0|behDotless-ar.init=0+100" + "only": "RaqqSura.ttf", + "input": "سمم", + "expectation": "meem-ar.fina.round=2+554|meem-ar.medi.round2=1+398|seen-ar.init=0+345", + "variations": { + "MSHQ": 10.0 } }, { - "input": "بكـا", - "expectation": { - "default": "alef-ar.fina.kashida=3+219|kashida-ar=2+100|kaf-ar.medi=1+758|dotbelow-ar=0@51,-46+0|behDotless-ar.init=0@-21,0+109", - "RaqqSura.ttf": "alef-ar.fina.kashida=3+198|kashida-ar=2+100|kaf-ar.medi=1+758|dotbelow-ar=0@72,-46+0|behDotless-ar.init=0+100" + "only": "RaqqSura.ttf", + "input": "سها", + "expectation": "alef-ar.fina=2+90|heh-ar.medi=1@-26,0+328|seen-ar.init=0+345", + "variations": { + "MSHQ": 10.0 } }, { - "input": "بكمم", - "expectation": { - "default": "meem-ar.fina.round=3+554|meem-ar.medi.round2=2+398|kaf-ar.medi.alt=1@-8,0+750|dotbelow-ar=0@51,-46+0|behDotless-ar.init=0@-21,0+109", - "RaqqSura.ttf": "meem-ar.fina.round=3+554|meem-ar.medi.round2=2+398|kaf-ar.medi=1@-8,0+750|dotbelow-ar=0@72,-46+0|behDotless-ar.init=0+100" + "only": "RaqqSura.ttf", + "input": "سهم", + "expectation": "meem-ar.fina.round=2+554|heh-ar.medi.round=1+320|seen-ar.init=0+345", + "variations": { + "MSHQ": 10.0 } }, { - "input": "بلبا", - "expectation": { - "default": "alef-ar.fina=3+101|dotbelow-ar=2@9,-110+0|_c.seen.beh=2+0|behDotless-ar.medi=2+128|_c.seen.beh=1+0|lam-ar.medi=1+125|dotbelow-ar=0@72,-46+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", - "RaqqSura.ttf": "alef-ar.fina=3+90|dotbelow-ar=2@-19,-110+0|behDotless-ar.medi=2+100|lam-ar.medi=1+100|dotbelow-ar=0@72,-46+0|behDotless-ar.init=0+100" + "only": "RaqqSura.ttf", + "input": "سيء", + "expectation": "hamza-ar=2+0|twodotsverticalbelow-ar=0@330,-337+0|seen_alefMaksura-ar=0+346", + "variations": { + "MSHQ": 10.0 } }, { - "input": "بلسي", - "expectation": { - "default": "twodotsverticalbelow-ar=2@339,-337+0|seen_alefMaksura-ar.fina=2+343|_c.seen.beh=1+0|lam-ar.medi=1+125|dotbelow-ar=0@72,-46+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", - "RaqqSura.ttf": "twodotsverticalbelow-ar=2@339,-337+0|seen_alefMaksura-ar.fina=2+343|lam-ar.medi=1+100|dotbelow-ar=0@72,-46+0|behDotless-ar.init=0+100" + "only": "RaqqSura.ttf", + "input": "سيا", + "expectation": "alef-ar.fina=2+90|twodotsverticalbelow-ar=1@-19,-137+0|behDotless-ar.medi=1+100|seen-ar.init=0+345", + "variations": { + "MSHQ": 10.0 } }, { - "input": "بللٍ", - "expectation": { - "default": "kasratan-ar.alt=2@171,-277+0|lam-ar.fina.short=2+178|_c.seen.beh=1+0|lam-ar.medi=1+125|dotbelow-ar=0@72,-46+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", - "RaqqSura.ttf": "kasratan-ar.alt=2@171,-277+0|lam-ar.fina.short=2+178|lam-ar.medi=1+100|dotbelow-ar=0@72,-46+0|behDotless-ar.init=0+100" + "only": "RaqqSura.ttf", + "input": "سيم", + "expectation": "meem-ar.fina.round=2+554|twodotsverticalbelow-ar=1@-20,-137+0|behDotless-ar.medi.round=1@-6,0+104|seen-ar.init=0+345", + "variations": { + "MSHQ": 10.0 } }, { - "input": "بمسي", - "expectation": { - "default": "twodotsverticalbelow-ar=2@339,-337+0|seen_alefMaksura-ar.fina=2+343|_c.seen.beh=1+0|meem-ar.medi=1+380|dotbelow-ar=0@47,-46+0|behDotless-ar.init=0@-25,0+105", - "RaqqSura.ttf": "twodotsverticalbelow-ar=2@339,-337+0|seen_alefMaksura-ar.fina=2+343|meem-ar.medi=1@-28,0+352|dotbelow-ar=0@72,-46+0|behDotless-ar.init=0+100" + "only": "RaqqSura.ttf", + "input": "شئِ", + "expectation": "kasra-ar=0@122,-393+0|threedotshorizontalabove-ar.3=0@-35,167+0|seen_alefMaksura-ar=0+346", + "variations": { + "MSHQ": 10.0 } }, { - "input": "بمما", - "expectation": { - "default": "alef-ar.fina=3+101|_c.seen.beh=2+0|meem-ar.medi.round=2+425|meem-ar.medi.round2=1+398|dotbelow-ar=0@72,-46+0|behDotless-ar.init=0+130", - "RaqqSura.ttf": "alef-ar.fina=3+90|meem-ar.medi.round=2+425|meem-ar.medi.round2=1+398|dotbelow-ar=0@72,-46+0|behDotless-ar.init=0+100" + "only": "RaqqSura.ttf", + "input": "ششش", + "expectation": "threedotshorizontalabove-ar.4=2@2,229+0|seen-ar.fina=2+484|threedotshorizontalabove-ar.1=1@-9,171+0|seen-ar.medi=1+345|threedotshorizontalabove-ar=0@-9,171+0|seen-ar.init=0+345", + "variations": { + "MSHQ": 10.0 } }, { - "input": "بنخل", - "expectation": { - "default": "lam-ar.fina=3+177|dotabove-ar=2@-26,220+0|_c.hah.beh=2+7|hah-ar.medi=2+133|dotabove-ar.beh=1@8,416+0|behDotless-ar.medi=1@0,122+128|dotbelow-ar=0@131,126+0|_c.seen.beh=0@0,122+0|behDotless-ar.init.high=0@0,122+340", - "RaqqSura.ttf": "lam-ar.fina=3+177|dotabove-ar=2@-33,220+0|hah-ar.medi=2+133|dotabove-ar.beh=1@-15,419+0|behDotless-ar.medi=1@0,122+100|dotbelow-ar=0@51,76+0|behDotless-ar.init.high=0@0,122+360" + "only": "RaqqSura.ttf", + "input": "شيق", + "expectation": "twodotsverticalabove-ar=2@-62,265+0|qafDotless-ar.fina=2+373|twodotsverticalbelow-ar=1@131,-137+0|behDotless-ar.medi=1+100|threedotshorizontalabove-ar=0@-9,171+0|seen-ar.init=0+345", + "variations": { + "MSHQ": 10.0 } }, { - "input": "بنين", - "expectation": { - "default": "dotabove-ar=3@-3,101+0|noonghunna-ar.fina=3+250|twodotsverticalbelow-ar=2@55,-137+0|behDotless-ar.medi.round=2+108|dotabove-ar.beh=1@-7,385+0|_c.seen.beh=1+0|behDotless-ar.medi.high=1+128|dotbelow-ar=0@72,-46+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", - "RaqqSura.ttf": "dotabove-ar=3@-3,90+0|noonghunna-ar.fina=3+250|twodotsverticalbelow-ar=2@50,-137+0|behDotless-ar.medi.round=2@-6,0+104|dotabove-ar.beh=1@-15,382+0|behDotless-ar.medi.high=1+100|dotbelow-ar=0@72,-46+0|behDotless-ar.init=0+100" + "only": "RaqqSura.ttf", + "input": "صبا", + "expectation": "alef-ar.fina=2+90|dotbelow-ar=1@-19,-110+0|behDotless-ar.medi=1+100|sad-ar.init=0+765", + "variations": { + "MSHQ": 10.0 } }, { - "input": "بنيه", - "expectation": { - "default": "heh-ar.fina=3+339|twodotsverticalbelow-ar=2@9,-137+0|_c.seen.beh=2+0|behDotless-ar.medi=2+128|dotabove-ar.beh=1@-7,385+0|_c.seen.beh=1+0|behDotless-ar.medi.high=1+128|dotbelow-ar=0@72,-46+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", - "RaqqSura.ttf": "heh-ar.fina=3+336|twodotsverticalbelow-ar=2@-19,-137+0|behDotless-ar.medi=2+100|dotabove-ar.beh=1@-15,382+0|behDotless-ar.medi.high=1+100|dotbelow-ar=0@72,-46+0|behDotless-ar.init=0+100" + "only": "RaqqSura.ttf", + "input": "صسي", + "expectation": "twodotsverticalbelow-ar=1@339,-337+0|seen_alefMaksura-ar.fina=1+343|sad-ar.init=0+765", + "variations": { + "MSHQ": 10.0 } }, { - "input": "بهبا", - "expectation": { - "default": "alef-ar.fina=3+101|dotbelow-ar=2@9,-110+0|_c.seen.beh=2+0|behDotless-ar.medi=2+128|_c.feh.medi.beh=1+0|heh-ar.medi=1+357|dotbelow-ar=0@72,-46+0|_c.seen.beh=0+0|behDotless-ar.init.med=0+130", - "RaqqSura.ttf": "alef-ar.fina=3+90|dotbelow-ar=2@-19,-110+0|behDotless-ar.medi=2+100|heh-ar.medi=1@-26,0+328|dotbelow-ar=0@72,-46+0|behDotless-ar.init.med=0+100" + "only": "RaqqSura.ttf", + "input": "طبا", + "expectation": "alef-ar.fina=2+90|dotbelow-ar=1@-19,-110+0|behDotless-ar.medi=1+100|tah-ar.init=0+765", + "variations": { + "MSHQ": 10.0 } }, { - "input": "بهجة", - "expectation": { - "default": "twodotsverticalabove-ar=3@159,377+0|heh-ar.fina=3+339|dotbelow-ar=2@220,-112+0|_c.hah.beh=2+7|hah-ar.medi=2+133|heh-ar.medi=1@0,122+357|dotbelow-ar=0@122,126+0|_c.seen.beh=0@0,122+0|behDotless-ar.init.med=0@0,122+130", - "RaqqSura.ttf": "twodotsverticalabove-ar=3@186,388+0|heh-ar.fina=3+336|dotbelow-ar=2@213,-112+0|hah-ar.medi=2+133|heh-ar.medi=1@0,122+354|dotbelow-ar=0@72,76+0|behDotless-ar.init.med=0@0,122+100" + "only": "RaqqSura.ttf", + "input": "طحح", + "expectation": "hah-ar.fina=2+417|hah-ar.medi.hah=1@0,115+109|tah-ar.init.hah2=0@0,7+765", + "variations": { + "MSHQ": 10.0 } }, { - "input": "بهسي", - "expectation": { - "default": "twodotsverticalbelow-ar=2@339,-337+0|seen_alefMaksura-ar.fina=2+343|_c.feh.medi.beh=1+0|heh-ar.medi=1+357|dotbelow-ar=0@72,-46+0|_c.seen.beh=0+0|behDotless-ar.init.med=0+130", - "RaqqSura.ttf": "twodotsverticalbelow-ar=2@339,-337+0|seen_alefMaksura-ar.fina=2+343|heh-ar.medi=1@-26,0+328|dotbelow-ar=0@72,-46+0|behDotless-ar.init.med=0+100" + "only": "RaqqSura.ttf", + "input": "طسي", + "expectation": "twodotsverticalbelow-ar=1@339,-337+0|seen_alefMaksura-ar.fina=1+343|tah-ar.init=0+765", + "variations": { + "MSHQ": 10.0 } }, { - "input": "بهمن", - "expectation": { - "default": "dotabove-ar=3@-3,101+0|noonghunna-ar.fina=3+250|meem-ar.medi.round3=2+398|heh-ar.medi.round=1+323|dotbelow-ar=0@72,-46+0|_c.seen.beh=0+0|behDotless-ar.init.med=0+130", - "RaqqSura.ttf": "dotabove-ar=3@-3,90+0|noonghunna-ar.fina=3+250|meem-ar.medi.round3=2+398|heh-ar.medi.round=1+320|dotbelow-ar=0@72,-46+0|behDotless-ar.init.med=0+100" + "only": "RaqqSura.ttf", + "input": "طلم", + "expectation": "meem-ar.fina.round=2+554|lam-ar.medi.round.short=1@2,0+95|tah-ar.init=0+765", + "variations": { + "MSHQ": 10.0 } }, { - "input": "بيبن", - "expectation": { - "default": "dotabove-ar=3@-3,101+0|noonghunna-ar.fina=3+250|dotbelow-ar=2@-15,-110+0|behDotless-ar.medi.round=2+108|twodotsverticalbelow-ar=1@14,-137+0|_c.seen.beh=1+0|behDotless-ar.medi.high=1+128|dotbelow-ar=0@72,-46+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", - "RaqqSura.ttf": "dotabove-ar=3@-3,90+0|noonghunna-ar.fina=3+250|dotbelow-ar=2@50,-110+0|behDotless-ar.medi.round=2@-6,0+104|twodotsverticalbelow-ar=1@-13,-137+0|behDotless-ar.medi.high=1+100|dotbelow-ar=0@72,-46+0|behDotless-ar.init=0+100" + "only": "RaqqSura.ttf", + "input": "طلى", + "expectation": "lam_alefMaksura-ar.fina.short=1+110|tah-ar.init=0+765", + "variations": { + "MSHQ": 10.0 } }, { - "input": "بُمل", - "expectation": { - "default": "lam-ar.fina=3+177|_c.seen.beh=2+0|meem-ar.medi=2+380|damma-ar=0@-88,98+0|dotbelow-ar=0@47,-46+0|behDotless-ar.init=0@-25,0+105", - "RaqqSura.ttf": "lam-ar.fina=3+177|meem-ar.medi=2@-28,0+352|damma-ar=0@-85,98+0|dotbelow-ar=0@72,-46+0|behDotless-ar.init=0+100" + "only": "RaqqSura.ttf", + "input": "عبا", + "expectation": "alef-ar.fina=2+90|dotbelow-ar=1@-19,-110+0|behDotless-ar.medi=1+100|ain-ar.init=0+680", + "variations": { + "MSHQ": 10.0 } }, { - "input": "تتتا", - "expectation": { - "default": "alef-ar.fina=3+101|twodotsverticalabove-ar.vert.beh=2@5,298+0|_c.seen.beh=2+0|behDotless-ar.medi=2+128|twodotsverticalabove-ar.beh=1@-37,393+0|_c.seen.beh=1+0|behDotless-ar.medi.high=1+128|twodotsverticalabove-ar=0@-28,307+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", - "RaqqSura.ttf": "alef-ar.fina=3+90|twodotsverticalabove-ar.vert.beh=2@-18,301+0|behDotless-ar.medi=2+100|twodotsverticalabove-ar.beh=1@-45,390+0|behDotless-ar.medi.high=1+100|twodotsverticalabove-ar=0@-50,305+0|behDotless-ar.init=0+100" + "only": "RaqqSura.ttf", + "input": "عبب", + "expectation": "dotbelow-ar=2@834,-111+0|behDotless-ar.fina=2+984|dotbelow-ar=1@-13,-110+0|behDotless-ar.medi.high=1+100|ain-ar.init=0+680", + "variations": { + "MSHQ": 10.0 } }, { - "input": "تعبا", - "expectation": { - "default": "alef-ar.fina=3+101|dotbelow-ar=2@9,-110+0|_c.seen.beh=2+0|behDotless-ar.medi=2+128|_c.ain.medi.beh=1+66|ain-ar.medi=1+220|twodotsverticalabove-ar.beh=0@-39,400+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", - "RaqqSura.ttf": "alef-ar.fina=3+90|dotbelow-ar=2@-19,-110+0|behDotless-ar.medi=2+100|ain-ar.medi=1+202|twodotsverticalabove-ar.beh=0@-45,388+0|behDotless-ar.init.high=0+100" + "only": "RaqqSura.ttf", + "input": "عبم", + "expectation": "meem-ar.fina.round=2+554|dotbelow-ar=1@-20,-110+0|behDotless-ar.medi.round=1@-6,0+104|ain-ar.init=0+680", + "variations": { + "MSHQ": 10.0 } }, { - "input": "تعبت", - "expectation": { - "default": "twodotsverticalabove-ar=3@803,264+0|behDotless-ar.fina=3+984|dotbelow-ar=2@14,-110+0|_c.seen.beh=2+0|behDotless-ar.medi.high=2+128|_c.ain.medi.beh=1+66|ain-ar.medi=1+220|twodotsverticalabove-ar.beh=0@-39,400+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", - "RaqqSura.ttf": "twodotsverticalabove-ar=3@803,264+0|behDotless-ar.fina=3+984|dotbelow-ar=2@-13,-110+0|behDotless-ar.medi.high=2+100|ain-ar.medi=1+202|twodotsverticalabove-ar.beh=0@-45,388+0|behDotless-ar.init.high=0+100" + "only": "RaqqSura.ttf", + "input": "عبه", + "expectation": "heh-ar.fina=2+336|dotbelow-ar=1@-13,-110+0|behDotless-ar.medi.med=1+100|ain-ar.init=0+680", + "variations": { + "MSHQ": 10.0 } }, { - "input": "تعبه", - "expectation": { - "default": "heh-ar.fina=3+339|dotbelow-ar=2@17,-110+0|_c.seen.beh=2+0|behDotless-ar.medi.med=2+128|_c.ain.medi.beh=1+66|ain-ar.medi=1+220|twodotsverticalabove-ar.beh=0@-39,400+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", - "RaqqSura.ttf": "heh-ar.fina=3+336|dotbelow-ar=2@-13,-110+0|behDotless-ar.medi.med=2+100|ain-ar.medi=1+202|twodotsverticalabove-ar.beh=0@-45,388+0|behDotless-ar.init.high=0+100" + "only": "RaqqSura.ttf", + "input": "عسا", + "expectation": "alef-ar.fina=2+90|seen-ar.medi.low=1+433|ain-ar.init=0+680", + "variations": { + "MSHQ": 10.0 } }, { - "input": "تعلم", - "expectation": { - "default": "meem-ar.fina.round=3+554|lam-ar.medi.round=2+95|_c.ain.medi.beh=1+66|ain-ar.medi=1+220|twodotsverticalabove-ar.beh=0@-39,400+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", - "RaqqSura.ttf": "meem-ar.fina.round=3+554|lam-ar.medi.round=2+95|ain-ar.medi=1+202|twodotsverticalabove-ar.beh=0@-45,388+0|behDotless-ar.init.high=0+100" + "only": "RaqqSura.ttf", + "input": "عسي", + "expectation": "twodotsverticalbelow-ar=1@339,-337+0|seen_alefMaksura-ar.fina=1+343|ain-ar.init=0+680", + "variations": { + "MSHQ": 10.0 } }, { - "input": "تعلو", - "expectation": { - "default": "waw-ar.fina=3+472|lam-ar.medi=2@-10,0+115|_c.ain.medi.beh=1+66|ain-ar.medi=1+220|twodotsverticalabove-ar.beh=0@-39,400+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", - "RaqqSura.ttf": "waw-ar.fina=3+477|lam-ar.medi=2@-10,0+90|ain-ar.medi=1+202|twodotsverticalabove-ar.beh=0@-45,388+0|behDotless-ar.init.high=0+100" + "only": "RaqqSura.ttf", + "input": "عضا", + "expectation": "alef-ar.fina=2+90|dotabove-ar=1@310,247+0|sad-ar.medi=1+758|ain-ar.init=0+680", + "variations": { + "MSHQ": 10.0 } }, { - "input": "تغنم", - "expectation": { - "default": "meem-ar.fina.round=3+554|dotabove-ar.beh=2@-29,270+0|behDotless-ar.medi.round=2+108|dotabove-ar=1@-8,223+0|_c.ain.medi.beh=1+66|ain-ar.medi=1+220|twodotsverticalabove-ar.beh=0@-39,400+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", - "RaqqSura.ttf": "meem-ar.fina.round=3+554|dotabove-ar.beh=2@-11,297+0|behDotless-ar.medi.round=2@-6,0+104|dotabove-ar=1@-74,223+0|ain-ar.medi=1+202|twodotsverticalabove-ar.beh=0@-45,388+0|behDotless-ar.init.high=0+100" + "only": "RaqqSura.ttf", + "input": "عطا", + "expectation": "alef-ar.fina.short=2+102|tah-ar.medi=1+758|ain-ar.init=0+680", + "variations": { + "MSHQ": 10.0 } }, { - "input": "ثثثا", - "expectation": { - "default": "alef-ar.fina=3+101|threedotsupabove-ar.vert.beh=2@5,298+0|_c.seen.beh=2+0|behDotless-ar.medi=2+128|threedotsupabove-ar.beh=1@-67,393+0|_c.seen.beh=1+0|behDotless-ar.medi.high=1+128|threedotsupabove-ar=0@-62,307+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", - "RaqqSura.ttf": "alef-ar.fina=3+90|threedotsupabove-ar.vert.beh=2@-18,301+0|behDotless-ar.medi=2+100|threedotsupabove-ar.beh=1@-75,390+0|behDotless-ar.medi.high=1+100|threedotsupabove-ar=0@-84,305+0|behDotless-ar.init=0+100" + "only": "RaqqSura.ttf", + "input": "ععا", + "expectation": "alef-ar.fina=2+90|ain-ar.medi=1+202|ain-ar.init=0+680", + "variations": { + "MSHQ": 10.0 } }, { - "input": "جججج", - "expectation": { - "default": "dotbelow-ar=3@571,-122+0|hah-ar.fina=3+417|dotbelow-ar=2@401,-25+0|hah-ar.medi.hah=2@0,115+109|dotbelow-ar=1@401,97+0|hah-ar.medi.hah=1@0,237+109|dotbelow-ar=0@400,220+0|hah-ar.init.hah=0@0,359+579", - "RaqqSura.ttf": "dotbelow-ar=3@571,-122+0|hah-ar.fina=3+417|dotbelow-ar=2@401,-25+0|hah-ar.medi.hah=2@0,115+109|dotbelow-ar=1@401,97+0|hah-ar.medi.hah=1@0,237+109|dotbelow-ar=0@400,220+0|hah-ar.init.hah=0@0,359+579" + "only": "RaqqSura.ttf", + "input": "ععع", + "expectation": "ain-ar.fina=2+262|ain-ar.medi=1+202|ain-ar.init=0+680", + "variations": { + "MSHQ": 10.0 } }, { - "input": "جلحو", - "expectation": { - "default": "waw-ar.fina.round=3+492|_c.ain.meem=2@-7,0+28|hah-ar.medi=2@-39,0+94|lam-ar.medi.hah1=1@0,7+125|dotbelow-ar=0@270,-10+0|_c.hah.beh=0@0,122+7|hah-ar.init=0@0,122+703", - "RaqqSura.ttf": "waw-ar.fina=3+477|hah-ar.medi=2+133|lam-ar.medi.hah1=1@0,7+125|dotbelow-ar=0@213,10+0|hah-ar.init=0@0,122+703" + "only": "RaqqSura.ttf", + "input": "عكا", + "expectation": "alef-ar.fina=2+90|kaf-ar.medi=1@-5,0+753|ain-ar.init=0+680", + "variations": { + "MSHQ": 10.0 } }, { - "input": "حالت", - "expectation": { - "default": "twodotsverticalabove-ar=3@803,264+0|behDotless-ar.fina=3+984|_c.seen.beh=2+0|lam-ar.init=2+123|alef-ar.fina=1@400,0+501|_c.hah.beh=0+7|hah-ar.init=0+703", - "RaqqSura.ttf": "twodotsverticalabove-ar=3@803,264+0|behDotless-ar.fina=3+984|lam-ar.init.short=2+100|alef-ar.fina.lam=1+90|hah-ar.init=0+703" + "only": "RaqqSura.ttf", + "input": "علا", + "expectation": "lam_alef-ar.fina=1+522|ain-ar.init=0@-11,0+669", + "variations": { + "MSHQ": 10.0 } }, { - "input": "ريحا", - "expectation": { - "default": "alef-ar.fina=3+101|_c.hah.beh=2+7|hah-ar.medi.alt=2+135|twodotsverticalbelow-ar=1@167,158+0|behDotless-ar.init.hah=1@63,5+572|reh-ar=0@400,0+850", - "RaqqSura.ttf": "alef-ar.fina=3+90|hah-ar.medi.alt=2+135|twodotsverticalbelow-ar=1@167,158+0|behDotless-ar.init.hah=1@63,5+572|reh-ar=0+453" + "only": "RaqqSura.ttf", + "input": "علج", + "expectation": "dotbelow-ar=2@571,-122+0|hah-ar.fina=2+417|lam-ar.medi.hah1=1+125|ain-ar.init=0@0,115+680", + "variations": { + "MSHQ": 10.0 } }, { - "input": "سبإٍ", - "expectation": { - "default": "kasratan-ar=2@-75,-131+0|alef-ar.fina=2+101|dotbelow-ar=1@9,-110+0|_c.seen.beh=1+0|behDotless-ar.medi=1+128|_c.seen.beh=0+0|seen-ar.init=0+378", - "RaqqSura.ttf": "kasratan-ar=2@-85,-131+0|alef-ar.fina=2+90|dotbelow-ar=1@-19,-110+0|behDotless-ar.medi=1+100|seen-ar.init=0+345" + "only": "RaqqSura.ttf", + "input": "علل", + "expectation": "lam-ar.fina.short=2+178|lam-ar.medi=1+100|ain-ar.init=0+680", + "variations": { + "MSHQ": 10.0 } }, { - "input": "سببا", - "expectation": { - "default": "alef-ar.fina=3+101|dotbelow-ar=2@9,-110+0|_c.seen.beh=2+0|behDotless-ar.medi=2+128|dotbelow-ar=1@14,-110+0|_c.seen.beh=1+0|behDotless-ar.medi.high=1+128|_c.seen.beh=0+0|seen-ar.init=0+378", - "RaqqSura.ttf": "alef-ar.fina=3+90|dotbelow-ar=2@-19,-110+0|behDotless-ar.medi=2+100|dotbelow-ar=1@-13,-110+0|behDotless-ar.medi.high=1+100|seen-ar.init=0+345" + "only": "RaqqSura.ttf", + "input": "علم", + "expectation": "meem-ar.fina.round=2+554|lam-ar.medi.round=1+95|ain-ar.init=0+680", + "variations": { + "MSHQ": 10.0 } }, { - "input": "سبيل", - "expectation": { - "default": "lam-ar.fina=3+177|twodotsverticalbelow-ar=2@9,-137+0|_c.seen.beh=2+0|behDotless-ar.medi=2+128|dotbelow-ar=1@14,-110+0|_c.seen.beh=1+0|behDotless-ar.medi.high=1+128|_c.seen.beh=0+0|seen-ar.init=0+378", - "RaqqSura.ttf": "lam-ar.fina=3+177|twodotsverticalbelow-ar=2@-19,-137+0|behDotless-ar.medi=2+100|dotbelow-ar=1@-13,-110+0|behDotless-ar.medi.high=1+100|seen-ar.init=0+345" + "only": "RaqqSura.ttf", + "input": "علن", + "expectation": "dotabove-ar=2@-3,90+0|noonghunna-ar.fina=2+250|lam-ar.medi.round=1+95|ain-ar.init=0+680", + "variations": { + "MSHQ": 10.0 } }, { - "input": "سحيق", - "expectation": { - "default": "twodotsverticalabove-ar=3@-62,265+0|qafDotless-ar.fina=3+373|twodotsverticalbelow-ar=2@159,-137+0|behDotless-ar.medi=2+128|_c.hah.beh=1+7|hah-ar.medi=1+133|seen-ar.init=0@0,122+468", - "RaqqSura.ttf": "twodotsverticalabove-ar=3@-62,265+0|qafDotless-ar.fina=3+373|twodotsverticalbelow-ar=2@131,-137+0|behDotless-ar.medi=2+100|hah-ar.medi=1+133|seen-ar.init=0@0,122+465" + "only": "RaqqSura.ttf", + "input": "على", + "expectation": "lam_alefMaksura-ar.fina=1+110|ain-ar.init=0+680", + "variations": { + "MSHQ": 10.0 } }, { - "input": "سوءِ", - "expectation": { - "default": "kasra-ar=2@186,-263+0|waw-ar.fina=1+472|seen-ar.init=0+378", - "RaqqSura.ttf": "kasra-ar=2@191,-246+0|waw-ar.fina=1+477|seen-ar.init=0+345" + "only": "RaqqSura.ttf", + "input": "علي", + "expectation": "twodotsverticalbelow-ar=1@311,-329+0|lam_alefMaksura-ar.fina=1+110|ain-ar.init=0+680", + "variations": { + "MSHQ": 10.0 } }, { - "input": "سِيء", - "expectation": { - "default": "hamza-ar=3+0|twodotsverticalbelow-ar=2@339,-334+0|alefMaksura-ar.fina=2+282|kasra-ar=0@126,-125+0|seen-ar.init=0@-36,0+342", - "RaqqSura.ttf": "hamza-ar=3+0|twodotsverticalbelow-ar=0@330,-337+0|kasra-ar=0@217,-101+0|seen_alefMaksura-ar=0+346" + "only": "RaqqSura.ttf", + "input": "عما", + "expectation": "alef-ar.fina=2+90|meem-ar.medi=1@-28,0+352|ain-ar.init=0+680", + "variations": { + "MSHQ": 10.0 } }, { - "input": "صــا", - "expectation": { - "default": "alef-ar.fina.kashida=3+219|kashida-ar=2+100|kashida-ar=1+100|sad-ar.init=0+765", - "RaqqSura.ttf": "alef-ar.fina.kashida=3+198|kashida-ar=2+100|kashida-ar=1+100|sad-ar.init=0+765" + "only": "RaqqSura.ttf", + "input": "عمم", + "expectation": "meem-ar.fina.round=2+554|meem-ar.medi.round2=1+398|ain-ar.init=0+680", + "variations": { + "MSHQ": 10.0 } }, { - "input": "طارق", - "expectation": { - "default": "twodotsverticalabove-ar=3@-70,279+0|qafDotless-ar=3+469|reh-ar=2@370,0+820|alef-ar.fina.short=1@400,0+502|_c.seen.beh=0+0|tah-ar.init=0+765", - "RaqqSura.ttf": "twodotsverticalabove-ar=3@-70,279+0|qafDotless-ar=3+469|reh-ar=2@-30,0+423|alef-ar.fina.short=1+102|tah-ar.init=0+765" + "only": "RaqqSura.ttf", + "input": "عها", + "expectation": "alef-ar.fina=2+90|heh-ar.medi=1@-26,0+328|ain-ar.init=0+680", + "variations": { + "MSHQ": 10.0 } }, { - "input": "طريق", - "expectation": { - "default": "twodotsverticalabove-ar=3@-62,265+0|qafDotless-ar.fina=3+373|twodotsverticalbelow-ar=2@72,-73+0|behDotless-ar.init=2+130|reh-ar.fina=1@305,0+698|tah-ar.init=0+765", - "RaqqSura.ttf": "twodotsverticalabove-ar=3@-62,265+0|qafDotless-ar.fina=3+373|twodotsverticalbelow-ar=2@72,-73+0|behDotless-ar.init=2+100|reh-ar.fina=1@-95,0+292|tah-ar.init=0+765" + "only": "RaqqSura.ttf", + "input": "عهم", + "expectation": "meem-ar.fina.round=2+554|heh-ar.medi.round=1+320|ain-ar.init=0+680", + "variations": { + "MSHQ": 10.0 } }, { - "input": "عليم", - "expectation": { - "default": "meem-ar.fina.round=3+554|twodotsverticalbelow-ar=2@-15,-137+0|behDotless-ar.medi.round=2+108|_c.seen.beh=1+0|lam-ar.medi=1+125|_c.ain.init.beh=0+95|ain-ar.init=0@-50,0+640", - "RaqqSura.ttf": "meem-ar.fina.round=3+554|twodotsverticalbelow-ar=2@-20,-137+0|behDotless-ar.medi.round=2@-6,0+104|lam-ar.medi=1+100|ain-ar.init=0+680" + "only": "RaqqSura.ttf", + "input": "عيم", + "expectation": "meem-ar.fina.round=2+554|twodotsverticalbelow-ar=1@-20,-137+0|behDotless-ar.medi.round=1@-6,0+104|ain-ar.init=0+680", + "variations": { + "MSHQ": 10.0 } }, { - "input": "علِي", - "expectation": { - "default": "twodotsverticalbelow-ar=3@339,-334+0|alefMaksura-ar.fina=3+282|kasra-ar=1@48,-111+0|lam-ar.medi=1+125|_c.ain.init.beh=0+95|ain-ar.init=0@-50,0+640", - "RaqqSura.ttf": "twodotsverticalbelow-ar=1@311,-329+0|kasra-ar=1@-19,-132+0|lam_alefMaksura-ar.fina=1+110|ain-ar.init=0+680" + "only": "RaqqSura.ttf", + "input": "غغغ", + "expectation": "dotabove-ar=2@-30,195+0|ain-ar.fina=2+262|dotabove-ar=1@-74,223+0|ain-ar.medi=1+202|dotabove-ar=0@-24,295+0|ain-ar.init=0+680", + "variations": { + "MSHQ": 10.0 } }, { - "input": "عيسى", - "expectation": { - "default": "seen_alefMaksura-ar.fina=2+343|twodotsverticalbelow-ar=1@14,-137+0|_c.seen.beh=1+0|behDotless-ar.medi.high=1+128|_c.ain.init.beh=0+95|ain-ar.init=0@-50,0+640", - "RaqqSura.ttf": "seen_alefMaksura-ar.fina=2+343|twodotsverticalbelow-ar=1@-13,-137+0|behDotless-ar.medi.high=1+100|ain-ar.init=0+680" + "only": "RaqqSura.ttf", + "input": "ــد", + "expectation": "dal-ar.fina=2+875|kashida-ar=1+100|kashida-ar=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "فبيا", - "expectation": { - "default": "alef-ar.fina=3+101|twodotsverticalbelow-ar=2@9,-137+0|_c.seen.beh=2+0|behDotless-ar.medi=2+128|dotbelow-ar=1@14,-110+0|_c.seen.beh=1+0|behDotless-ar.medi.high=1+128|dotabove-ar=0@-1,373+0|_c.feh.init.beh=0+174|fehDotless-ar.init=0@-114,0+220", - "RaqqSura.ttf": "alef-ar.fina=3+90|twodotsverticalbelow-ar=2@-19,-137+0|behDotless-ar.medi=2+100|dotbelow-ar=1@-13,-110+0|behDotless-ar.medi.high=1+100|dotabove-ar=0@-61,373+0|fehDotless-ar.init=0+334" + "only": "RaqqSura.ttf", + "input": "فبا", + "expectation": "alef-ar.fina=2+90|dotbelow-ar=1@-19,-110+0|behDotless-ar.medi=1+100|dotabove-ar=0@-61,373+0|fehDotless-ar.init=0+334", + "variations": { + "MSHQ": 10.0 } }, { - "input": "فلاُ", - "expectation": { - "default": "damma-ar=1@-137,-14+0|lam_alef-ar.fina=1+510|dotabove-ar=0@-91,373+0|fehDotless-ar.init=0@-30,0+304", - "RaqqSura.ttf": "damma-ar=1@-83,-14+0|lam_alef-ar.fina=1+522|dotabove-ar=0@-91,373+0|fehDotless-ar.init=0@-30,0+304" + "only": "RaqqSura.ttf", + "input": "فبب", + "expectation": "dotbelow-ar=2@834,-111+0|behDotless-ar.fina=2+984|dotbelow-ar=1@-13,-110+0|behDotless-ar.medi.high=1+100|dotabove-ar=0@-61,373+0|fehDotless-ar.init=0+334", + "variations": { + "MSHQ": 10.0 } }, { - "input": "فلِي", - "expectation": { - "default": "twodotsverticalbelow-ar=3@339,-334+0|alefMaksura-ar.fina=3+282|kasra-ar=1@48,-111+0|lam-ar.medi=1+125|dotabove-ar=0@-1,373+0|_c.feh.init.beh=0+174|fehDotless-ar.init=0@-114,0+220", - "RaqqSura.ttf": "twodotsverticalbelow-ar=1@311,-329+0|kasra-ar=1@-19,-132+0|lam_alefMaksura-ar.fina=1+110|dotabove-ar=0@-61,373+0|fehDotless-ar.init=0+334" + "only": "RaqqSura.ttf", + "input": "فبم", + "expectation": "meem-ar.fina.round=2+554|dotbelow-ar=1@-20,-110+0|behDotless-ar.medi.round=1@-6,0+104|dotabove-ar=0@-61,373+0|fehDotless-ar.init=0+334", + "variations": { + "MSHQ": 10.0 } }, { - "input": "قالت", - "expectation": { - "default": "twodotsverticalabove-ar=3@803,264+0|behDotless-ar.fina=3+984|_c.seen.beh=2+0|lam-ar.init=2+123|twodotsverticalabove-ar=0@515,402+0|fehDotless_alef-ar=0@392,0+952", - "RaqqSura.ttf": "twodotsverticalabove-ar=3@803,264+0|behDotless-ar.fina=3+984|lam-ar.init.short=2+100|twodotsverticalabove-ar=0@115,402+0|fehDotless_alef-ar=0@-8,0+552" + "only": "RaqqSura.ttf", + "input": "فبه", + "expectation": "heh-ar.fina=2+336|dotbelow-ar=1@-13,-110+0|behDotless-ar.medi.med=1+100|dotabove-ar=0@-61,373+0|fehDotless-ar.init=0+334", + "variations": { + "MSHQ": 10.0 } }, { - "input": "قلنا", - "expectation": { - "default": "alef-ar.fina=3+101|dotabove-ar.beh=2@8,294+0|_c.seen.beh=2+0|behDotless-ar.medi=2+128|_c.seen.beh=1+0|lam-ar.medi=1+125|twodotsverticalabove-ar=0@-31,381+0|_c.feh.init.beh=0+174|fehDotless-ar.init=0@-114,0+220", - "RaqqSura.ttf": "alef-ar.fina=3+90|dotabove-ar.beh=2@-15,297+0|behDotless-ar.medi=2+100|lam-ar.medi=1+100|twodotsverticalabove-ar=0@-91,381+0|fehDotless-ar.init=0+334" + "only": "RaqqSura.ttf", + "input": "فتح", + "expectation": "hah-ar.fina=2+417|twodotsverticalabove-ar.beh=1@-45,420+0|behDotless-ar.medi=1@0,115+100|dotabove-ar=0@-61,488+0|fehDotless-ar.init=0@0,115+334", + "variations": { + "MSHQ": 10.0 } }, { - "input": "كلمة", - "expectation": { - "default": "twodotsverticalabove-ar=3@159,377+0|heh-ar.fina=3+339|_c.seen.beh=2+0|meem-ar.medi.round=2+425|lam-ar.medi.round=1+95|kaf-ar.init.alt=0@-5,0+760", - "RaqqSura.ttf": "twodotsverticalabove-ar=3@186,388+0|heh-ar.fina=3+336|meem-ar.medi.round=2+425|lam-ar.medi.round=1+95|kaf-ar.init=0@-5,0+760" + "only": "RaqqSura.ttf", + "input": "فحا", + "expectation": "alef-ar.fina=2+90|hah-ar.medi=1+133|dotabove-ar=0@-56,495+0|fehDotless-ar.init.hah=0@11,122+479", + "variations": { + "MSHQ": 10.0 } }, { - "input": "لبشر", - "expectation": { - "default": "reh-ar.fina=3+393|threedotshorizontalabove-ar.2=2@0,125+0|seen-ar.medi.low=2+411|dotbelow-ar=1@17,-110+0|_c.seen.beh=1+0|behDotless-ar.medi.med=1+128|_c.seen.beh=0+0|lam-ar.init=0+123", - "RaqqSura.ttf": "reh-ar.fina=3+387|threedotshorizontalabove-ar.1=2@-9,171+0|seen-ar.medi=2+345|dotbelow-ar=1@-13,-110+0|behDotless-ar.medi.high=1+100|lam-ar.init=0+123" + "only": "RaqqSura.ttf", + "input": "فحح", + "expectation": "hah-ar.fina=2+417|hah-ar.medi.hah=1@0,115+109|dotabove-ar=0@-56,610+0|fehDotless-ar.init.hah=0@11,237+479", + "variations": { + "MSHQ": 10.0 } }, { - "input": "لحلا", - "expectation": { - "default": "lam_alef-ar.fina=2+510|hah-ar.medi.alt=1@-57,0+78|lam-ar.init.hah1.alt=0@63,5+578", - "RaqqSura.ttf": "lam_alef-ar.fina=2+522|hah-ar.medi.alt=1@-57,0+78|lam-ar.init.hah1.alt=0@63,5+578" + "only": "RaqqSura.ttf", + "input": "فسا", + "expectation": "alef-ar.fina=2+90|seen-ar.medi=1+345|dotabove-ar=0@-61,373+0|fehDotless-ar.init=0+334", + "variations": { + "MSHQ": 10.0 } }, { - "input": "لسبا", - "expectation": { - "default": "alef-ar.fina=3+101|dotbelow-ar=2@9,-110+0|_c.seen.beh=2+0|behDotless-ar.medi=2+128|_c.seen.beh=1+0|seen-ar.medi=1+401|_c.seen.beh=0+0|lam-ar.init=0+123", - "RaqqSura.ttf": "alef-ar.fina=3+90|dotbelow-ar=2@-19,-110+0|behDotless-ar.medi=2+100|seen-ar.medi=1+345|lam-ar.init=0+123" + "only": "RaqqSura.ttf", + "input": "فسي", + "expectation": "twodotsverticalbelow-ar=1@339,-337+0|seen_alefMaksura-ar.fina=1+343|dotabove-ar=0@-61,373+0|fehDotless-ar.init=0+334", + "variations": { + "MSHQ": 10.0 } }, { - "input": "لسبب", - "expectation": { - "default": "dotbelow-ar=3@834,-111+0|behDotless-ar.fina=3+984|dotbelow-ar=2@14,-110+0|_c.seen.beh=2+0|behDotless-ar.medi.high=2+128|_c.seen.beh=1+0|seen-ar.medi=1+401|_c.seen.beh=0+0|lam-ar.init=0+123", - "RaqqSura.ttf": "dotbelow-ar=3@834,-111+0|behDotless-ar.fina=3+984|dotbelow-ar=2@-13,-110+0|behDotless-ar.medi.high=2+100|seen-ar.medi=1+345|lam-ar.init=0+123" + "only": "RaqqSura.ttf", + "input": "فصا", + "expectation": "alef-ar.fina=2+90|sad-ar.medi=1+758|dotabove-ar=0@-61,373+0|fehDotless-ar.init=0+334", + "variations": { + "MSHQ": 10.0 } }, { - "input": "لسبه", - "expectation": { - "default": "heh-ar.fina=3+339|dotbelow-ar=2@17,-110+0|_c.seen.beh=2+0|behDotless-ar.medi.med=2+128|_c.seen.beh=1+0|seen-ar.medi=1+401|_c.seen.beh=0+0|lam-ar.init=0+123", - "RaqqSura.ttf": "heh-ar.fina=3+336|dotbelow-ar=2@-13,-110+0|behDotless-ar.medi.med=2+100|seen-ar.medi=1+345|lam-ar.init=0+123" + "only": "RaqqSura.ttf", + "input": "فطا", + "expectation": "alef-ar.fina.short=2+102|tah-ar.medi=1+758|dotabove-ar=0@-61,373+0|fehDotless-ar.init=0+334", + "variations": { + "MSHQ": 10.0 } }, { - "input": "لسسا", - "expectation": { - "default": "alef-ar.fina=3+101|_c.seen.beh=2+0|seen-ar.medi=2+401|_c.seen.beh=1+0|seen-ar.medi=1+401|_c.seen.beh=0+0|lam-ar.init=0+123", - "RaqqSura.ttf": "alef-ar.fina=3+90|seen-ar.medi=2+345|seen-ar.medi=1+345|lam-ar.init=0+123" + "only": "RaqqSura.ttf", + "input": "فعا", + "expectation": "alef-ar.fina=2+90|ain-ar.medi=1+202|dotabove-ar=0@-61,373+0|fehDotless-ar.init=0+334", + "variations": { + "MSHQ": 10.0 } }, { - "input": "لسسي", - "expectation": { - "default": "twodotsverticalbelow-ar=2@339,-337+0|seen_alefMaksura-ar.fina=2+343|_c.seen.beh=1+0|seen-ar.medi=1+401|_c.seen.beh=0+0|lam-ar.init=0+123", - "RaqqSura.ttf": "twodotsverticalbelow-ar=2@339,-337+0|seen_alefMaksura-ar.fina=2+343|seen-ar.medi=1+345|lam-ar.init=0+123" + "only": "RaqqSura.ttf", + "input": "ففا", + "expectation": "alef-ar.fina=2+90|dotabove-ar=1@1,329+0|fehDotless-ar.medi=1+377|dotabove-ar=0@-61,373+0|fehDotless-ar.init=0+334", + "variations": { + "MSHQ": 10.0 } }, { - "input": "لسضا", - "expectation": { - "default": "alef-ar.fina=3+101|dotabove-ar=2@310,247+0|_c.seen.beh=2+0|sad-ar.medi=2+758|seen-ar.medi=1@-15,0+386|_c.seen.beh=0+0|lam-ar.init=0+123", - "RaqqSura.ttf": "alef-ar.fina=3+90|dotabove-ar=2@310,247+0|sad-ar.medi=2+758|seen-ar.medi=1@-15,0+330|lam-ar.init=0+123" + "only": "RaqqSura.ttf", + "input": "فكا", + "expectation": "alef-ar.fina=2+90|kaf-ar.medi=1@-5,0+753|dotabove-ar=0@-61,373+0|fehDotless-ar.init=0+334", + "variations": { + "MSHQ": 10.0 } }, { - "input": "لسطا", - "expectation": { - "default": "alef-ar.fina.short=3+102|_c.seen.beh=2+0|tah-ar.medi=2+758|seen-ar.medi=1@-15,0+386|_c.seen.beh=0+0|lam-ar.init=0+123", - "RaqqSura.ttf": "alef-ar.fina.short=3+102|tah-ar.medi=2+758|seen-ar.medi=1@-15,0+330|lam-ar.init=0+123" + "only": "RaqqSura.ttf", + "input": "فلآ", + "expectation": "madda-ar=1@203,582+0|lam_alef-ar.fina=1+522|dotabove-ar=0@-91,373+0|fehDotless-ar.init=0@-30,0+304", + "variations": { + "MSHQ": 10.0 } }, { - "input": "لسعا", - "expectation": { - "default": "alef-ar.fina=3+101|_c.ain.medi.beh=2+66|ain-ar.medi=2+220|_c.seen.beh=1+0|seen-ar.medi=1+401|_c.seen.beh=0+0|lam-ar.init=0+123", - "RaqqSura.ttf": "alef-ar.fina=3+90|ain-ar.medi=2+202|seen-ar.medi=1+345|lam-ar.init=0+123" + "only": "RaqqSura.ttf", + "input": "فلأ", + "expectation": "fatha-ar=1@389,570+0|lam_alef-ar.fina=1+522|dotabove-ar=0@-91,373+0|fehDotless-ar.init=0@-30,0+304", + "variations": { + "MSHQ": 10.0 } }, { - "input": "لسكا", - "expectation": { - "default": "alef-ar.fina=3+101|kaf-ar.medi.alt=2@-5,0+753|seen-ar.medi=1@-15,0+386|_c.seen.beh=0+0|lam-ar.init=0+123", - "RaqqSura.ttf": "alef-ar.fina=3+90|kaf-ar.medi=2@-5,0+753|seen-ar.medi=1@-15,0+330|lam-ar.init=0+123" + "only": "RaqqSura.ttf", + "input": "فلا", + "expectation": "lam_alef-ar.fina=1+522|dotabove-ar=0@-91,373+0|fehDotless-ar.init=0@-30,0+304", + "variations": { + "MSHQ": 10.0 } }, { - "input": "لسلا", - "expectation": { - "default": "lam_alef-ar.fina=2+510|seen-ar.medi=1+401|_c.seen.beh=0+0|lam-ar.init=0+123", - "RaqqSura.ttf": "lam_alef-ar.fina=2+522|seen-ar.medi=1+345|lam-ar.init=0+123" + "only": "RaqqSura.ttf", + "input": "فما", + "expectation": "alef-ar.fina=2+90|meem-ar.medi=1@-28,0+352|dotabove-ar=0@-61,373+0|fehDotless-ar.init=0+334", + "variations": { + "MSHQ": 10.0 } }, { - "input": "لسلن", - "expectation": { - "default": "dotabove-ar=3@-3,101+0|noonghunna-ar.fina=3+250|lam-ar.medi.round=2+95|_c.seen.beh=1+0|seen-ar.medi=1+401|_c.seen.beh=0+0|lam-ar.init=0+123", - "RaqqSura.ttf": "dotabove-ar=3@-3,90+0|noonghunna-ar.fina=3+250|lam-ar.medi.round=2+95|seen-ar.medi=1+345|lam-ar.init=0+123" + "only": "RaqqSura.ttf", + "input": "فمم", + "expectation": "meem-ar.fina.round=2+554|meem-ar.medi.round2=1+398|dotabove-ar=0@-61,373+0|fehDotless-ar.init=0+334", + "variations": { + "MSHQ": 10.0 } }, { - "input": "لسما", - "expectation": { - "default": "alef-ar.fina=3+101|_c.seen.beh=2+0|meem-ar.medi=2+380|_c.seen.meem=1@11,0+27|seen-ar.medi=1@-36,0+365|_c.seen.beh=0+0|lam-ar.init=0+123", - "RaqqSura.ttf": "alef-ar.fina=3+90|meem-ar.medi=2@-28,0+352|seen-ar.medi=1+345|lam-ar.init=0+123" + "only": "RaqqSura.ttf", + "input": "فمن", + "expectation": "dotabove-ar=2@-3,90+0|noonghunna-ar.fina=2+250|meem-ar.medi.round2=1+398|dotabove-ar=0@-61,373+0|fehDotless-ar.init=0+334", + "variations": { + "MSHQ": 10.0 } }, { - "input": "لسمم", - "expectation": { - "default": "meem-ar.fina.round=3+554|meem-ar.medi.round2=2+398|_c.seen.meem=1@7,0+23|seen-ar.medi=1@-36,0+365|_c.seen.beh=0+0|lam-ar.init=0+123", - "RaqqSura.ttf": "meem-ar.fina.round=3+554|meem-ar.medi.round2=2+398|seen-ar.medi=1+345|lam-ar.init=0+123" + "only": "RaqqSura.ttf", + "input": "فها", + "expectation": "alef-ar.fina=2+90|heh-ar.medi=1@-26,0+328|dotabove-ar=0@-61,373+0|fehDotless-ar.init=0+334", + "variations": { + "MSHQ": 10.0 } }, { - "input": "لسها", - "expectation": { - "default": "alef-ar.fina=3+101|_c.feh.medi.beh=2+0|heh-ar.medi=2+357|_c.seen.beh=1+0|seen-ar.medi=1+401|_c.seen.beh=0+0|lam-ar.init=0+123", - "RaqqSura.ttf": "alef-ar.fina=3+90|heh-ar.medi=2@-26,0+328|seen-ar.medi=1+345|lam-ar.init=0+123" + "only": "RaqqSura.ttf", + "input": "فهم", + "expectation": "meem-ar.fina.round=2+554|heh-ar.medi.round=1+320|dotabove-ar=0@-61,373+0|fehDotless-ar.init=0+334", + "variations": { + "MSHQ": 10.0 } }, { - "input": "لسهم", - "expectation": { - "default": "meem-ar.fina.round=3+554|heh-ar.medi.round=2+323|_c.seen.beh=1+0|seen-ar.medi=1+401|_c.seen.beh=0+0|lam-ar.init=0+123", - "RaqqSura.ttf": "meem-ar.fina.round=3+554|heh-ar.medi.round=2+320|seen-ar.medi=1+345|lam-ar.init=0+123" + "only": "RaqqSura.ttf", + "input": "فهو", + "expectation": "waw-ar.fina.round=2+492|heh-ar.medi.round=1+320|dotabove-ar=0@-61,373+0|fehDotless-ar.init=0+334", + "variations": { + "MSHQ": 10.0 } }, { - "input": "لسيم", - "expectation": { - "default": "meem-ar.fina.round=3+554|twodotsverticalbelow-ar=2@-15,-137+0|behDotless-ar.medi.round=2+108|_c.seen.beh=1+0|seen-ar.medi=1+401|_c.seen.beh=0+0|lam-ar.init=0+123", - "RaqqSura.ttf": "meem-ar.fina.round=3+554|twodotsverticalbelow-ar=2@-20,-137+0|behDotless-ar.medi.round=2@-6,0+104|seen-ar.medi=1+345|lam-ar.init=0+123" + "only": "RaqqSura.ttf", + "input": "قال", + "expectation": "lam-ar.short=2+186|twodotsverticalabove-ar=0@106,402+0|fehDotless_alef-ar=0@-17,0+543", + "variations": { + "MSHQ": 10.0 } }, { - "input": "لمحا", - "expectation": { - "default": "alef-ar.fina=3+101|_c.hah.beh=2+7|hah-ar.medi=2+133|meem-ar.medi=1@0,122+380|lam-ar.init.hah1=0@-25,7+98", - "RaqqSura.ttf": "alef-ar.fina=3+90|hah-ar.medi=2+133|meem-ar.medi=1@-28,122+352|lam-ar.init.hah1=0@0,7+123" + "only": "RaqqSura.ttf", + "input": "قلم", + "expectation": "meem-ar.fina.round=2+554|lam-ar.medi.round=1+95|twodotsverticalabove-ar=0@-91,381+0|fehDotless-ar.init=0+334", + "variations": { + "MSHQ": 10.0 } }, { - "input": "لممح", - "expectation": { - "default": "hah-ar.fina=3+417|meem-ar.medi.round=2@0,115+425|meem-ar.medi.round2=1@0,115+398|lam-ar.init.hah1=0@-22,0+101", - "RaqqSura.ttf": "hah-ar.fina=3+417|meem-ar.medi.round=2@0,115+425|meem-ar.medi.round2=1@0,115+398|lam-ar.init.hah1=0@-22,0+101" + "only": "RaqqSura.ttf", + "input": "كسي", + "expectation": "twodotsverticalbelow-ar=1@339,-337+0|seen_alefMaksura-ar.fina=1+343|kaf-ar.init=0@-5,0+760", + "variations": { + "MSHQ": 10.0 } }, { - "input": "لمهم", - "expectation": { - "default": "meem-ar.fina.round=3+554|heh-ar.medi.round=2+323|_c.seen.beh=1+0|meem-ar.medi=1+380|lam-ar.init=0@-25,0+98", - "RaqqSura.ttf": "meem-ar.fina.round=3+554|heh-ar.medi.round=2+320|meem-ar.medi=1@-28,0+352|lam-ar.init=0+123" + "only": "RaqqSura.ttf", + "input": "كـا", + "expectation": "alef-ar.fina.kashida=2+198|kashida-ar=1+100|kaf-ar.init=0+765", + "variations": { + "MSHQ": 10.0 } }, { - "input": "مذهل", - "expectation": { - "default": "lam-ar.fina=3+177|_c.feh.medi.beh=2+0|heh-ar.init=2+361|dotabove-ar=1@826,249+0|dal-ar.fina=1@400,0+1275|meem-ar.init=0+425", - "RaqqSura.ttf": "lam-ar.fina=3+177|heh-ar.init=2@-26,0+335|dotabove-ar=1@420,249+0|dal-ar.fina=1+875|meem-ar.init=0+425" + "only": "RaqqSura.ttf", + "input": "كلا", + "expectation": "lam_alef-ar.fina=1+522|kaf-ar.init=0@-40,0+725", + "variations": { + "MSHQ": 10.0 } }, { - "input": "مفصح", - "expectation": { - "default": "hah-ar.fina=3+417|sad-ar.medi=2@0,115+758|dotabove-ar=1@-6,444+0|_c.feh.medi.dal=1@0,115+71|fehDotless-ar.medi=1@-78,115+299|_c.seen.beh=0@0,115+0|meem-ar.init=0@0,115+425", - "RaqqSura.ttf": "hah-ar.fina=3+417|sad-ar.medi=2@0,115+758|dotabove-ar=1@1,444+0|fehDotless-ar.medi=1@0,115+377|meem-ar.init=0@0,115+425" + "only": "RaqqSura.ttf", + "input": "كما", + "expectation": "alef-ar.fina=2+90|meem-ar.medi=1@-28,0+352|kaf-ar.init=0@-5,0+760", + "variations": { + "MSHQ": 10.0 } }, { - "input": "ممسي", - "expectation": { - "default": "twodotsverticalbelow-ar=2@339,-337+0|seen_alefMaksura-ar.fina=2+343|_c.seen.beh=1+0|meem-ar.medi.round=1+425|meem-ar.init.round=0+398", - "RaqqSura.ttf": "twodotsverticalbelow-ar=2@339,-337+0|seen_alefMaksura-ar.fina=2+343|meem-ar.medi.round=1+425|meem-ar.init.round=0+398" + "only": "RaqqSura.ttf", + "input": "كمم", + "expectation": "meem-ar.fina.round=2+554|meem-ar.medi.round2=1+398|kaf-ar.init=0@-8,0+757", + "variations": { + "MSHQ": 10.0 } }, { - "input": "ممما", - "expectation": { - "default": "alef-ar.fina=3+101|_c.seen.beh=2+0|meem-ar.medi.round=2+425|meem-ar.medi.round3=1+398|meem-ar.init.round=0+398", - "RaqqSura.ttf": "alef-ar.fina=3+90|meem-ar.medi.round=2+425|meem-ar.medi.round3=1+398|meem-ar.init.round=0+398" + "only": "RaqqSura.ttf", + "input": "كًا", + "expectation": "alef-ar.fina=2+90|fathatan-ar=0@44,279+0|kaf-ar.init=0@-5,0+760", + "variations": { + "MSHQ": 10.0 } }, { - "input": "منهم", - "expectation": { - "default": "meem-ar.fina.round=3+554|heh-ar.medi.round=2+323|dotabove-ar.beh=1@2,343+0|_c.seen.beh=1+0|behDotless-ar.medi.med=1+128|_c.seen.beh=0+0|meem-ar.init=0+425", - "RaqqSura.ttf": "meem-ar.fina.round=3+554|heh-ar.medi.round=2+320|dotabove-ar.beh=1@-15,336+0|behDotless-ar.medi.med=1+100|meem-ar.init=0+425" + "only": "RaqqSura.ttf", + "input": "لأَ", + "expectation": "fatha-ar=0@352,599+0|lam_alef-ar=0+542", + "variations": { + "MSHQ": 10.0 } }, { - "input": "منين", - "expectation": { - "default": "dotabove-ar=3@-3,101+0|noonghunna-ar.fina=3+250|twodotsverticalbelow-ar=2@55,-137+0|behDotless-ar.medi.round=2+108|dotabove-ar.beh=1@-7,385+0|_c.seen.beh=1+0|behDotless-ar.medi.high=1+128|_c.seen.beh=0+0|meem-ar.init=0+425", - "RaqqSura.ttf": "dotabove-ar=3@-3,90+0|noonghunna-ar.fina=3+250|twodotsverticalbelow-ar=2@50,-137+0|behDotless-ar.medi.round=2@-6,0+104|dotabove-ar.beh=1@-15,382+0|behDotless-ar.medi.high=1+100|meem-ar.init=0+425" + "only": "RaqqSura.ttf", + "input": "لأُ", + "expectation": "damma-ar=0@-140,-56+0|lam_alef-ar=0+542", + "variations": { + "MSHQ": 10.0 } }, { - "input": "نسبا", - "expectation": { - "default": "alef-ar.fina=3+101|dotbelow-ar=2@9,-110+0|_c.seen.beh=2+0|behDotless-ar.medi=2+128|_c.seen.beh=1+0|seen-ar.medi.low=1+411|dotabove-ar=0@-2,339+0|_c.seen.beh=0+0|behDotless-ar.init.med=0+130", - "RaqqSura.ttf": "alef-ar.fina=3+90|dotbelow-ar=2@-19,-110+0|behDotless-ar.medi=2+100|seen-ar.medi=1+345|dotabove-ar.beh=0@-15,380+0|behDotless-ar.init.high=0+100" + "only": "RaqqSura.ttf", + "input": "لإِ", + "expectation": "kasra-ar=0@16,-159+0|lam_alef-ar=0+542", + "variations": { + "MSHQ": 10.0 } }, { - "input": "نسبب", - "expectation": { - "default": "dotbelow-ar=3@834,-111+0|behDotless-ar.fina=3+984|dotbelow-ar=2@14,-110+0|_c.seen.beh=2+0|behDotless-ar.medi.high=2+128|_c.seen.beh=1+0|seen-ar.medi.low=1+411|dotabove-ar=0@-2,339+0|_c.seen.beh=0+0|behDotless-ar.init.med=0+130", - "RaqqSura.ttf": "dotbelow-ar=3@834,-111+0|behDotless-ar.fina=3+984|dotbelow-ar=2@-13,-110+0|behDotless-ar.medi.high=2+100|seen-ar.medi=1+345|dotabove-ar.beh=0@-15,380+0|behDotless-ar.init.high=0+100" + "only": "RaqqSura.ttf", + "input": "لبا", + "expectation": "alef-ar.fina=2+90|dotbelow-ar=1@-19,-110+0|behDotless-ar.medi=1+100|lam-ar.init=0+123", + "variations": { + "MSHQ": 10.0 } }, { - "input": "نسسا", - "expectation": { - "default": "alef-ar.fina=3+101|_c.seen.beh=2+0|seen-ar.medi=2+401|_c.seen.beh=1+0|seen-ar.medi.low=1+411|dotabove-ar=0@-2,339+0|_c.seen.beh=0+0|behDotless-ar.init.med=0+130", - "RaqqSura.ttf": "alef-ar.fina=3+90|seen-ar.medi=2+345|seen-ar.medi=1+345|dotabove-ar.beh=0@-15,380+0|behDotless-ar.init.high=0+100" + "only": "RaqqSura.ttf", + "input": "لحد", + "expectation": "dal-ar.fina=2+875|hah-ar.medi.alt=1+135|lam-ar.init.hah1.alt=0@63,5+578", + "variations": { + "MSHQ": 10.0 } }, { - "input": "نسضا", - "expectation": { - "default": "alef-ar.fina=3+101|dotabove-ar=2@310,247+0|_c.seen.beh=2+0|sad-ar.medi=2+758|seen-ar.medi.low=1@-15,0+396|dotabove-ar=0@-2,339+0|_c.seen.beh=0+0|behDotless-ar.init.med=0+130", - "RaqqSura.ttf": "alef-ar.fina=3+90|dotabove-ar=2@310,247+0|sad-ar.medi=2+758|seen-ar.medi=1@-15,0+330|dotabove-ar.beh=0@-15,380+0|behDotless-ar.init.high=0+100" + "only": "RaqqSura.ttf", + "input": "لحم", + "expectation": "meem-ar.fina=2+567|hah-ar.medi.alt=1+135|lam-ar.init.hah1.alt=0@63,5+578", + "variations": { + "MSHQ": 10.0 } }, { - "input": "نسطا", - "expectation": { - "default": "alef-ar.fina.short=3+102|_c.seen.beh=2+0|tah-ar.medi=2+758|seen-ar.medi.low=1@-15,0+396|dotabove-ar=0@-2,339+0|_c.seen.beh=0+0|behDotless-ar.init.med=0+130", - "RaqqSura.ttf": "alef-ar.fina.short=3+102|tah-ar.medi=2+758|seen-ar.medi=1@-15,0+330|dotabove-ar.beh=0@-15,380+0|behDotless-ar.init.high=0+100" + "only": "RaqqSura.ttf", + "input": "لحے", + "expectation": "yehbarree-ar.fina=2+297|hah-ar.medi.alt=1+135|lam-ar.init.hah1.alt=0@63,5+578", + "variations": { + "MSHQ": 10.0 } }, { - "input": "نسعا", - "expectation": { - "default": "alef-ar.fina=3+101|_c.ain.medi.beh=2+66|ain-ar.medi=2+220|_c.seen.beh=1+0|seen-ar.medi.low=1+411|dotabove-ar=0@-2,339+0|_c.seen.beh=0+0|behDotless-ar.init.med=0+130", - "RaqqSura.ttf": "alef-ar.fina=3+90|ain-ar.medi=2+202|seen-ar.medi=1+345|dotabove-ar.beh=0@-15,380+0|behDotless-ar.init.high=0+100" + "only": "RaqqSura.ttf", + "input": "لسا", + "expectation": "alef-ar.fina=2+90|seen-ar.medi=1+345|lam-ar.init=0+123", + "variations": { + "MSHQ": 10.0 } }, { - "input": "نسكا", - "expectation": { - "default": "alef-ar.fina=3+101|kaf-ar.medi.alt=2@-5,0+753|seen-ar.medi.low=1@-15,0+396|dotabove-ar=0@-2,339+0|_c.seen.beh=0+0|behDotless-ar.init.med=0+130", - "RaqqSura.ttf": "alef-ar.fina=3+90|kaf-ar.medi=2@-5,0+753|seen-ar.medi=1@-15,0+330|dotabove-ar.beh=0@-15,380+0|behDotless-ar.init.high=0+100" + "only": "RaqqSura.ttf", + "input": "لسب", + "expectation": "dotbelow-ar=2@834,-111+0|behDotless-ar.fina=2+984|seen-ar.medi=1+345|lam-ar.init=0+123", + "variations": { + "MSHQ": 10.0 } }, { - "input": "نسلا", - "expectation": { - "default": "lam_alef-ar.fina=2+510|seen-ar.medi.low=1+411|dotabove-ar=0@-2,339+0|_c.seen.beh=0+0|behDotless-ar.init.med=0+130", - "RaqqSura.ttf": "lam_alef-ar.fina=2+522|seen-ar.medi=1+345|dotabove-ar.beh=0@-15,380+0|behDotless-ar.init.high=0+100" + "only": "RaqqSura.ttf", + "input": "لسد", + "expectation": "dal-ar.fina=2+875|seen-ar.medi=1@-15,0+330|lam-ar.init=0+123", + "variations": { + "MSHQ": 10.0 } }, { - "input": "نسلن", - "expectation": { - "default": "dotabove-ar=3@-3,101+0|noonghunna-ar.fina=3+250|lam-ar.medi.round=2+95|_c.seen.beh=1+0|seen-ar.medi.low=1+411|dotabove-ar=0@-2,339+0|_c.seen.beh=0+0|behDotless-ar.init.med=0+130", - "RaqqSura.ttf": "dotabove-ar=3@-3,90+0|noonghunna-ar.fina=3+250|lam-ar.medi.round=2+95|seen-ar.medi=1+345|dotabove-ar.beh=0@-15,380+0|behDotless-ar.init.high=0+100" + "only": "RaqqSura.ttf", + "input": "لسر", + "expectation": "reh-ar.fina=2+387|seen-ar.medi=1+345|lam-ar.init=0+123", + "variations": { + "MSHQ": 10.0 } }, { - "input": "نسما", - "expectation": { - "default": "alef-ar.fina=3+101|_c.seen.beh=2+0|meem-ar.medi=2+380|_c.seen.meem=1@11,0+27|seen-ar.medi.low=1@-36,0+375|dotabove-ar=0@-2,339+0|_c.seen.beh=0+0|behDotless-ar.init.med=0+130", - "RaqqSura.ttf": "alef-ar.fina=3+90|meem-ar.medi=2@-28,0+352|seen-ar.medi=1+345|dotabove-ar.beh=0@-15,380+0|behDotless-ar.init.high=0+100" + "only": "RaqqSura.ttf", + "input": "لسس", + "expectation": "seen-ar.fina=2+484|seen-ar.medi=1+345|lam-ar.init=0+123", + "variations": { + "MSHQ": 10.0 } }, { - "input": "نسمم", - "expectation": { - "default": "meem-ar.fina.round=3+554|meem-ar.medi.round2=2+398|_c.seen.meem=1@7,0+23|seen-ar.medi.low=1@-36,0+375|dotabove-ar=0@-2,339+0|_c.seen.beh=0+0|behDotless-ar.init.med=0+130", - "RaqqSura.ttf": "meem-ar.fina.round=3+554|meem-ar.medi.round2=2+398|seen-ar.medi=1+345|dotabove-ar.beh=0@-15,380+0|behDotless-ar.init.high=0+100" + "only": "RaqqSura.ttf", + "input": "لسض", + "expectation": "dotabove-ar=2@398,247+0|sad-ar.fina=2+876|seen-ar.medi=1@-15,0+330|lam-ar.init=0+123", + "variations": { + "MSHQ": 10.0 } }, { - "input": "نسها", - "expectation": { - "default": "alef-ar.fina=3+101|_c.feh.medi.beh=2+0|heh-ar.medi=2+357|_c.seen.beh=1+0|seen-ar.medi.low=1+411|dotabove-ar=0@-2,339+0|_c.seen.beh=0+0|behDotless-ar.init.med=0+130", - "RaqqSura.ttf": "alef-ar.fina=3+90|heh-ar.medi=2@-26,0+328|seen-ar.medi=1+345|dotabove-ar.beh=0@-15,380+0|behDotless-ar.init.high=0+100" + "only": "RaqqSura.ttf", + "input": "لسط", + "expectation": "tah-ar.fina=2+798|seen-ar.medi=1@-15,0+330|lam-ar.init=0+123", + "variations": { + "MSHQ": 10.0 } }, { - "input": "نسهم", - "expectation": { - "default": "meem-ar.fina.round=3+554|heh-ar.medi.round=2+323|_c.seen.beh=1+0|seen-ar.medi.low=1+411|dotabove-ar=0@-2,339+0|_c.seen.beh=0+0|behDotless-ar.init.med=0+130", - "RaqqSura.ttf": "meem-ar.fina.round=3+554|heh-ar.medi.round=2+320|seen-ar.medi=1+345|dotabove-ar.beh=0@-15,380+0|behDotless-ar.init.high=0+100" + "only": "RaqqSura.ttf", + "input": "لسع", + "expectation": "ain-ar.fina=2+262|seen-ar.medi=1+345|lam-ar.init=0+123", + "variations": { + "MSHQ": 10.0 } }, { - "input": "نسيم", - "expectation": { - "default": "meem-ar.fina.round=3+554|twodotsverticalbelow-ar=2@-15,-137+0|behDotless-ar.medi.round=2+108|_c.seen.beh=1+0|seen-ar.medi.low=1+411|dotabove-ar=0@-2,339+0|_c.seen.beh=0+0|behDotless-ar.init.med=0+130", - "RaqqSura.ttf": "meem-ar.fina.round=3+554|twodotsverticalbelow-ar=2@-20,-137+0|behDotless-ar.medi.round=2@-6,0+104|seen-ar.medi=1+345|dotabove-ar.beh=0@-15,380+0|behDotless-ar.init.high=0+100" + "only": "RaqqSura.ttf", + "input": "لسف", + "expectation": "dotabove-ar=2@609,319+0|fehDotless-ar.fina=2+997|seen-ar.medi=1+345|lam-ar.init=0+123", + "variations": { + "MSHQ": 10.0 } }, { - "input": "نعبا", - "expectation": { - "default": "alef-ar.fina=3+101|dotbelow-ar=2@9,-110+0|_c.seen.beh=2+0|behDotless-ar.medi=2+128|_c.ain.medi.beh=1+66|ain-ar.medi=1+220|dotabove-ar.beh=0@-9,392+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", - "RaqqSura.ttf": "alef-ar.fina=3+90|dotbelow-ar=2@-19,-110+0|behDotless-ar.medi=2+100|ain-ar.medi=1+202|dotabove-ar.beh=0@-15,380+0|behDotless-ar.init.high=0+100" + "only": "RaqqSura.ttf", + "input": "لسق", + "expectation": "twodotsverticalabove-ar=2@-62,265+0|qafDotless-ar.fina=2+373|seen-ar.medi=1+345|lam-ar.init=0+123", + "variations": { + "MSHQ": 10.0 } }, { - "input": "نعبب", - "expectation": { - "default": "dotbelow-ar=3@834,-111+0|behDotless-ar.fina=3+984|dotbelow-ar=2@14,-110+0|_c.seen.beh=2+0|behDotless-ar.medi.high=2+128|_c.ain.medi.beh=1+66|ain-ar.medi=1+220|dotabove-ar.beh=0@-9,392+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", - "RaqqSura.ttf": "dotbelow-ar=3@834,-111+0|behDotless-ar.fina=3+984|dotbelow-ar=2@-13,-110+0|behDotless-ar.medi.high=2+100|ain-ar.medi=1+202|dotabove-ar.beh=0@-15,380+0|behDotless-ar.init.high=0+100" + "only": "RaqqSura.ttf", + "input": "لسك", + "expectation": "kaf-ar.fina=2+889|seen-ar.medi=1@-15,0+330|lam-ar.init=0+123", + "variations": { + "MSHQ": 10.0 } }, { - "input": "نعسا", - "expectation": { - "default": "alef-ar.fina=3+101|_c.seen.beh=2+0|seen-ar.medi=2+401|_c.ain.medi.beh=1+66|ain-ar.medi=1+220|dotabove-ar.beh=0@-9,392+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", - "RaqqSura.ttf": "alef-ar.fina=3+90|seen-ar.medi=2+345|ain-ar.medi=1+202|dotabove-ar.beh=0@-15,380+0|behDotless-ar.init.high=0+100" + "only": "RaqqSura.ttf", + "input": "لسل", + "expectation": "lam-ar.fina=2+177|seen-ar.medi=1+345|lam-ar.init=0+123", + "variations": { + "MSHQ": 10.0 } }, { - "input": "نعضا", - "expectation": { - "default": "alef-ar.fina=3+101|dotabove-ar=2@310,247+0|_c.seen.beh=2+0|sad-ar.medi=2+758|_c.ain.dal=1+47|ain-ar.medi=1+220|dotabove-ar.beh=0@-9,392+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", - "RaqqSura.ttf": "alef-ar.fina=3+90|dotabove-ar=2@310,247+0|sad-ar.medi=2+758|ain-ar.medi=1+202|dotabove-ar.beh=0@-15,380+0|behDotless-ar.init.high=0+100" + "only": "RaqqSura.ttf", + "input": "لسم", + "expectation": "meem-ar.fina=2+567|seen-ar.medi=1+345|lam-ar.init=0+123", + "variations": { + "MSHQ": 10.0 } }, { - "input": "نعطا", - "expectation": { - "default": "alef-ar.fina.short=3+102|_c.seen.beh=2+0|tah-ar.medi=2+758|_c.ain.dal=1+47|ain-ar.medi=1+220|dotabove-ar.beh=0@-9,392+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", - "RaqqSura.ttf": "alef-ar.fina.short=3+102|tah-ar.medi=2+758|ain-ar.medi=1+202|dotabove-ar.beh=0@-15,380+0|behDotless-ar.init.high=0+100" + "only": "RaqqSura.ttf", + "input": "لسن", + "expectation": "dotabove-ar=2@-3,90+0|noonghunna-ar.fina=2+250|seen-ar.medi=1+345|lam-ar.init=0+123", + "variations": { + "MSHQ": 10.0 } }, { - "input": "نععا", - "expectation": { - "default": "alef-ar.fina=3+101|_c.ain.medi.beh=2+66|ain-ar.medi=2+220|_c.ain.medi.beh=1+66|ain-ar.medi=1+220|dotabove-ar.beh=0@-9,392+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", - "RaqqSura.ttf": "alef-ar.fina=3+90|ain-ar.medi=2+202|ain-ar.medi=1+202|dotabove-ar.beh=0@-15,380+0|behDotless-ar.init.high=0+100" + "only": "RaqqSura.ttf", + "input": "لسه", + "expectation": "heh-ar.fina=2+336|seen-ar.medi=1+345|lam-ar.init=0+123", + "variations": { + "MSHQ": 10.0 } }, { - "input": "نعكا", - "expectation": { - "default": "alef-ar.fina=3+101|kaf-ar.medi.alt=2@-5,0+753|_c.ain.dal=1+47|ain-ar.medi=1+220|dotabove-ar.beh=0@-9,392+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", - "RaqqSura.ttf": "alef-ar.fina=3+90|kaf-ar.medi=2@-5,0+753|ain-ar.medi=1+202|dotabove-ar.beh=0@-15,380+0|behDotless-ar.init.high=0+100" + "only": "RaqqSura.ttf", + "input": "لسو", + "expectation": "waw-ar.fina=2+477|seen-ar.medi=1+345|lam-ar.init=0+123", + "variations": { + "MSHQ": 10.0 } }, { - "input": "نعلا", - "expectation": { - "default": "lam_alef-ar.fina=2+510|ain-ar.medi=1@-21,0+199|dotabove-ar.beh=0@-9,392+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", - "RaqqSura.ttf": "lam_alef-ar.fina=2+522|ain-ar.medi=1@-21,0+181|dotabove-ar.beh=0@-15,380+0|behDotless-ar.init.high=0+100" + "only": "RaqqSura.ttf", + "input": "لسى", + "expectation": "seen_alefMaksura-ar.fina=1+343|lam-ar.init=0+123", + "variations": { + "MSHQ": 10.0 } }, { - "input": "نعلن", - "expectation": { - "default": "dotabove-ar=3@-3,101+0|noonghunna-ar.fina=3+250|lam-ar.medi.round=2+95|_c.ain.medi.beh=1+66|ain-ar.medi=1+220|dotabove-ar.beh=0@-9,392+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", - "RaqqSura.ttf": "dotabove-ar=3@-3,90+0|noonghunna-ar.fina=3+250|lam-ar.medi.round=2+95|ain-ar.medi=1+202|dotabove-ar.beh=0@-15,380+0|behDotless-ar.init.high=0+100" + "only": "RaqqSura.ttf", + "input": "لسي", + "expectation": "twodotsverticalbelow-ar=1@339,-337+0|seen_alefMaksura-ar.fina=1+343|lam-ar.init=0+123", + "variations": { + "MSHQ": 10.0 } }, { - "input": "نعما", - "expectation": { - "default": "alef-ar.fina=3+101|_c.seen.beh=2+0|meem-ar.medi=2+380|_c.ain.meem=1@13,0+48|ain-ar.medi=1+220|dotabove-ar.beh=0@-9,392+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", - "RaqqSura.ttf": "alef-ar.fina=3+90|meem-ar.medi=2@-28,0+352|ain-ar.medi=1+202|dotabove-ar.beh=0@-15,380+0|behDotless-ar.init.high=0+100" + "only": "RaqqSura.ttf", + "input": "لسے", + "expectation": "yehbarree-ar.fina=2+297|seen-ar.medi=1@-32,0+313|lam-ar.init=0+443", + "variations": { + "MSHQ": 10.0 } }, { - "input": "نعمم", - "expectation": { - "default": "meem-ar.fina.round=3+554|meem-ar.medi.round2=2+398|_c.ain.meem=1@8,0+43|ain-ar.medi=1+220|dotabove-ar.beh=0@-9,392+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", - "RaqqSura.ttf": "meem-ar.fina.round=3+554|meem-ar.medi.round2=2+398|ain-ar.medi=1+202|dotabove-ar.beh=0@-15,380+0|behDotless-ar.init.high=0+100" + "only": "RaqqSura.ttf", + "input": "لصے", + "expectation": "yehbarree-ar.fina=2+297|sad-ar.medi=1+758|lam-ar.init=0@-23,0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "نعها", - "expectation": { - "default": "alef-ar.fina=3+101|_c.feh.medi.beh=2+0|heh-ar.medi=2+357|_c.ain.medi.beh=1+66|ain-ar.medi=1+220|dotabove-ar.beh=0@-9,392+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", - "RaqqSura.ttf": "alef-ar.fina=3+90|heh-ar.medi=2@-26,0+328|ain-ar.medi=1+202|dotabove-ar.beh=0@-15,380+0|behDotless-ar.init.high=0+100" + "only": "RaqqSura.ttf", + "input": "لطم", + "expectation": "meem-ar.fina=2+567|tah-ar.medi=1+758|lam-ar.init=0@-23,0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "نعهم", - "expectation": { - "default": "meem-ar.fina.round=3+554|heh-ar.medi.round=2+323|_c.ain.medi.beh=1+66|ain-ar.medi=1+220|dotabove-ar.beh=0@-9,392+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", - "RaqqSura.ttf": "meem-ar.fina.round=3+554|heh-ar.medi.round=2+320|ain-ar.medi=1+202|dotabove-ar.beh=0@-15,380+0|behDotless-ar.init.high=0+100" + "only": "RaqqSura.ttf", + "input": "لطے", + "expectation": "yehbarree-ar.fina=2+297|tah-ar.medi=1+758|lam-ar.init=0@-23,0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "نعيم", - "expectation": { - "default": "meem-ar.fina.round=3+554|twodotsverticalbelow-ar=2@-15,-137+0|behDotless-ar.medi.round=2+108|_c.ain.medi.beh=1+66|ain-ar.medi=1+220|dotabove-ar.beh=0@-9,392+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", - "RaqqSura.ttf": "meem-ar.fina.round=3+554|twodotsverticalbelow-ar=2@-20,-137+0|behDotless-ar.medi.round=2@-6,0+104|ain-ar.medi=1+202|dotabove-ar.beh=0@-15,380+0|behDotless-ar.init.high=0+100" + "only": "RaqqSura.ttf", + "input": "لعے", + "expectation": "yehbarree-ar.fina=2+297|ain-ar.medi=1+202|lam-ar.init=0+583", + "variations": { + "MSHQ": 10.0 } }, { - "input": "نــا", - "expectation": { - "default": "alef-ar.fina.kashida=3+219|kashida-ar=2+100|kashida-ar=1+100|dotabove-ar=0@2,299+0|behDotless-ar.init=0+130", - "RaqqSura.ttf": "alef-ar.fina.kashida=3+198|kashida-ar=2+100|kashida-ar=1+100|dotabove-ar=0@-20,297+0|behDotless-ar.init=0+100" + "only": "RaqqSura.ttf", + "input": "لفے", + "expectation": "yehbarree-ar.fina=2+297|dotabove-ar=1@1,329+0|fehDotless-ar.medi=1+377|lam-ar.init=0+413", + "variations": { + "MSHQ": 10.0 } }, { - "input": "نفبا", - "expectation": { - "default": "alef-ar.fina=3+101|dotbelow-ar=2@9,-110+0|_c.seen.beh=2+0|behDotless-ar.medi=2+128|dotabove-ar=1@1,329+0|_c.feh.medi.beh=1+0|fehDotless-ar.medi=1+377|dotabove-ar=0@2,299+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", - "RaqqSura.ttf": "alef-ar.fina=3+90|dotbelow-ar=2@-19,-110+0|behDotless-ar.medi=2+100|dotabove-ar=1@1,329+0|fehDotless-ar.medi=1+377|dotabove-ar=0@-20,297+0|behDotless-ar.init=0+100" + "only": "RaqqSura.ttf", + "input": "لكے", + "expectation": "yehbarree-ar.fina=2+297|kaf-ar.medi=1@-21,0+737|lam-ar.init=0@-23,0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "نفبب", - "expectation": { - "default": "dotbelow-ar=3@834,-111+0|behDotless-ar.fina=3+984|dotbelow-ar=2@14,-110+0|_c.seen.beh=2+0|behDotless-ar.medi.high=2+128|dotabove-ar=1@1,329+0|_c.feh.medi.beh=1+0|fehDotless-ar.medi=1+377|dotabove-ar=0@2,299+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", - "RaqqSura.ttf": "dotbelow-ar=3@834,-111+0|behDotless-ar.fina=3+984|dotbelow-ar=2@-13,-110+0|behDotless-ar.medi.high=2+100|dotabove-ar=1@1,329+0|fehDotless-ar.medi=1+377|dotabove-ar=0@-20,297+0|behDotless-ar.init=0+100" + "only": "RaqqSura.ttf", + "input": "للے", + "expectation": "yehbarree-ar.fina=2+297|lam-ar.medi.short=1+93|lam-ar.init=0+683", + "variations": { + "MSHQ": 10.0 } }, { - "input": "نفسا", - "expectation": { - "default": "alef-ar.fina=3+101|_c.seen.beh=2+0|seen-ar.medi.low=2+411|dotabove-ar=1@1,329+0|_c.feh.medi.beh=1+0|fehDotless-ar.medi=1+377|dotabove-ar=0@2,299+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", - "RaqqSura.ttf": "alef-ar.fina=3+90|seen-ar.medi=2+345|dotabove-ar=1@1,329+0|fehDotless-ar.medi=1+377|dotabove-ar=0@-20,297+0|behDotless-ar.init=0+100" + "only": "RaqqSura.ttf", + "input": "لما", + "expectation": "alef-ar.fina=2+90|meem-ar.medi=1@-28,0+352|lam-ar.init=0+123", + "variations": { + "MSHQ": 10.0 } }, { - "input": "نفضا", - "expectation": { - "default": "alef-ar.fina=3+101|dotabove-ar=2@310,247+0|_c.seen.beh=2+0|sad-ar.medi=2+758|dotabove-ar=1@-6,329+0|_c.feh.medi.dal=1+71|fehDotless-ar.medi=1@-78,0+299|dotabove-ar=0@2,299+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", - "RaqqSura.ttf": "alef-ar.fina=3+90|dotabove-ar=2@310,247+0|sad-ar.medi=2+758|dotabove-ar=1@1,329+0|fehDotless-ar.medi=1+377|dotabove-ar=0@-20,297+0|behDotless-ar.init=0+100" + "only": "RaqqSura.ttf", + "input": "لمح", + "expectation": "hah-ar.fina=2+417|meem-ar.medi=1@-28,115+352|lam-ar.init.hah1=0+123", + "variations": { + "MSHQ": 10.0 } }, { - "input": "نفطا", - "expectation": { - "default": "alef-ar.fina.short=3+102|_c.seen.beh=2+0|tah-ar.medi=2+758|dotabove-ar=1@-6,329+0|_c.feh.medi.dal=1+71|fehDotless-ar.medi=1@-78,0+299|dotabove-ar=0@2,299+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", - "RaqqSura.ttf": "alef-ar.fina.short=3+102|tah-ar.medi=2+758|dotabove-ar=1@1,329+0|fehDotless-ar.medi=1+377|dotabove-ar=0@-20,297+0|behDotless-ar.init=0+100" + "only": "RaqqSura.ttf", + "input": "لمم", + "expectation": "meem-ar.fina.round=2+554|meem-ar.medi.round2=1+398|lam-ar.init=0@-22,0+101", + "variations": { + "MSHQ": 10.0 } }, { - "input": "نفعا", - "expectation": { - "default": "alef-ar.fina=3+101|_c.ain.medi.beh=2+66|ain-ar.medi=2+220|dotabove-ar=1@1,329+0|_c.feh.medi.beh=1+0|fehDotless-ar.medi=1+377|dotabove-ar=0@2,299+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", - "RaqqSura.ttf": "alef-ar.fina=3+90|ain-ar.medi=2+202|dotabove-ar=1@1,329+0|fehDotless-ar.medi=1+377|dotabove-ar=0@-20,297+0|behDotless-ar.init=0+100" + "only": "RaqqSura.ttf", + "input": "لمے", + "expectation": "yehbarree-ar.fina=2+297|meem-ar.medi=1@-28,0+352|lam-ar.init=0+403", + "variations": { + "MSHQ": 10.0 } }, { - "input": "نفكا", - "expectation": { - "default": "alef-ar.fina=3+101|kaf-ar.medi.alt=2@-5,0+753|dotabove-ar=1@-6,329+0|_c.feh.medi.dal=1+71|fehDotless-ar.medi=1@-78,0+299|dotabove-ar=0@2,299+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", - "RaqqSura.ttf": "alef-ar.fina=3+90|kaf-ar.medi=2@-5,0+753|dotabove-ar=1@1,329+0|fehDotless-ar.medi=1+377|dotabove-ar=0@-20,297+0|behDotless-ar.init=0+100" + "only": "RaqqSura.ttf", + "input": "لهے", + "expectation": "yehbarree-ar.fina=2+297|heh-ar.medi=1+354|lam-ar.init=0+433", + "variations": { + "MSHQ": 10.0 } }, { - "input": "نفلا", - "expectation": { - "default": "lam_alef-ar.fina=2+510|dotabove-ar=1@-41,329+0|fehDotless-ar.medi=1@-42,0+335|dotabove-ar=0@2,299+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", - "RaqqSura.ttf": "lam_alef-ar.fina=2+522|dotabove-ar=1@-41,329+0|fehDotless-ar.medi=1@-42,0+335|dotabove-ar=0@-20,297+0|behDotless-ar.init=0+100" + "only": "RaqqSura.ttf", + "input": "لىے", + "expectation": "yehbarree-ar.fina=2+297|behDotless-ar.medi=1+100|lam-ar.init=0+683", + "variations": { + "MSHQ": 10.0 } }, { - "input": "نفلن", - "expectation": { - "default": "dotabove-ar=3@-3,101+0|noonghunna-ar.fina=3+250|lam-ar.medi.round=2+95|dotabove-ar=1@1,329+0|_c.feh.medi.beh=1+0|fehDotless-ar.medi=1+377|dotabove-ar=0@2,299+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", - "RaqqSura.ttf": "dotabove-ar=3@-3,90+0|noonghunna-ar.fina=3+250|lam-ar.medi.round=2+95|dotabove-ar=1@1,329+0|fehDotless-ar.medi=1+377|dotabove-ar=0@-20,297+0|behDotless-ar.init=0+100" + "only": "RaqqSura.ttf", + "input": "ليس", + "expectation": "seen-ar.fina=2+484|twodotsverticalbelow-ar=1@-13,-137+0|behDotless-ar.medi.high=1+100|lam-ar.init=0+123", + "variations": { + "MSHQ": 10.0 } }, { - "input": "نفما", - "expectation": { - "default": "alef-ar.fina=3+101|_c.seen.beh=2+0|meem-ar.medi=2+380|dotabove-ar=1@-12,329+0|_c.feh.medi.meem=1@11,0+58|fehDotless-ar.medi=1@-71,0+306|dotabove-ar=0@2,299+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", - "RaqqSura.ttf": "alef-ar.fina=3+90|meem-ar.medi=2@-28,0+352|dotabove-ar=1@1,329+0|fehDotless-ar.medi=1+377|dotabove-ar=0@-20,297+0|behDotless-ar.init=0+100" + "only": "RaqqSura.ttf", + "input": "متا", + "expectation": "alef-ar.fina=2+90|twodotsverticalabove-ar.vert.beh=1@-18,301+0|behDotless-ar.medi=1+100|meem-ar.init=0+425", + "variations": { + "MSHQ": 10.0 } }, { - "input": "نفمم", - "expectation": { - "default": "meem-ar.fina.round=3+554|meem-ar.medi.round2=2+398|dotabove-ar=1@-16,329+0|_c.feh.medi.meem=1@7,0+54|fehDotless-ar.medi=1@-71,0+306|dotabove-ar=0@2,299+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", - "RaqqSura.ttf": "meem-ar.fina.round=3+554|meem-ar.medi.round2=2+398|dotabove-ar=1@1,329+0|fehDotless-ar.medi=1+377|dotabove-ar=0@-20,297+0|behDotless-ar.init=0+100" + "only": "RaqqSura.ttf", + "input": "مثا", + "expectation": "alef-ar.fina=2+90|threedotsupabove-ar.vert.beh=1@-18,301+0|behDotless-ar.medi=1+100|meem-ar.init=0+425", + "variations": { + "MSHQ": 10.0 } }, { - "input": "نفها", - "expectation": { - "default": "alef-ar.fina=3+101|_c.feh.medi.beh=2+0|heh-ar.medi=2+357|dotabove-ar=1@1,329+0|_c.feh.medi.beh=1+0|fehDotless-ar.medi=1+377|dotabove-ar=0@2,299+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", - "RaqqSura.ttf": "alef-ar.fina=3+90|heh-ar.medi=2@-26,0+328|dotabove-ar=1@1,329+0|fehDotless-ar.medi=1+377|dotabove-ar=0@-20,297+0|behDotless-ar.init=0+100" + "only": "RaqqSura.ttf", + "input": "مثل", + "expectation": "lam-ar.fina=2+177|threedotsupabove-ar.vert.beh=1@-18,301+0|behDotless-ar.medi=1+100|meem-ar.init=0+425", + "variations": { + "MSHQ": 10.0 } }, { - "input": "نفهم", - "expectation": { - "default": "meem-ar.fina.round=3+554|heh-ar.medi.round=2+323|dotabove-ar=1@1,329+0|_c.feh.medi.beh=1+0|fehDotless-ar.medi=1+377|dotabove-ar=0@2,299+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", - "RaqqSura.ttf": "meem-ar.fina.round=3+554|heh-ar.medi.round=2+320|dotabove-ar=1@1,329+0|fehDotless-ar.medi=1+377|dotabove-ar=0@-20,297+0|behDotless-ar.init=0+100" + "only": "RaqqSura.ttf", + "input": "مسي", + "expectation": "twodotsverticalbelow-ar=1@339,-337+0|seen_alefMaksura-ar.fina=1+343|meem-ar.init=0+425", + "variations": { + "MSHQ": 10.0 } }, { - "input": "نقيم", - "expectation": { - "default": "meem-ar.fina.round=3+554|twodotsverticalbelow-ar=2@-15,-137+0|behDotless-ar.medi.round=2+108|twodotsverticalabove-ar=1@-29,337+0|_c.feh.medi.beh=1+0|fehDotless-ar.medi=1+377|dotabove-ar=0@2,299+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", - "RaqqSura.ttf": "meem-ar.fina.round=3+554|twodotsverticalbelow-ar=2@-20,-137+0|behDotless-ar.medi.round=2@-6,0+104|twodotsverticalabove-ar=1@-29,337+0|fehDotless-ar.medi=1+377|dotabove-ar=0@-20,297+0|behDotless-ar.init=0+100" + "only": "RaqqSura.ttf", + "input": "ملى", + "expectation": "lam_alefMaksura-ar.fina=1+110|meem-ar.init=0+425", + "variations": { + "MSHQ": 10.0 } }, { - "input": "نننا", - "expectation": { - "default": "alef-ar.fina=3+101|dotabove-ar.beh=2@8,294+0|_c.seen.beh=2+0|behDotless-ar.medi=2+128|dotabove-ar.beh=1@-7,385+0|_c.seen.beh=1+0|behDotless-ar.medi.high=1+128|dotabove-ar=0@2,299+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", - "RaqqSura.ttf": "alef-ar.fina=3+90|dotabove-ar.beh=2@-15,297+0|behDotless-ar.medi=2+100|dotabove-ar.beh=1@-15,382+0|behDotless-ar.medi.high=1+100|dotabove-ar=0@-20,297+0|behDotless-ar.init=0+100" + "only": "RaqqSura.ttf", + "input": "مما", + "expectation": "alef-ar.fina=2+90|meem-ar.medi.round=1+425|meem-ar.init.round=0+398", + "variations": { + "MSHQ": 10.0 } }, { - "input": "هالخ", - "expectation": { - "default": "dotabove-ar=3@256,188+0|hah-ar.fina.alt=3+407|lam-ar.init.hah1.alt=2@63,0+578|alef-ar.fina=1@400,0+501|_c.feh.medi.beh=0+0|heh-ar.init=0+361", - "RaqqSura.ttf": "dotabove-ar=3@256,188+0|hah-ar.fina.alt=3+407|lam-ar.init.hah1.alt=2@63,0+578|alef-ar.fina=1+90|heh-ar.init=0@-26,0+335" + "only": "RaqqSura.ttf", + "input": "ممح", + "expectation": "hah-ar.fina=2+417|meem-ar.medi.round=1@0,115+425|meem-ar.init.round=0@0,115+398", + "variations": { + "MSHQ": 10.0 } }, { - "input": "وبخا", - "expectation": { - "default": "alef-ar.fina=3+101|dotabove-ar=2@-15,198+0|_c.hah.beh=2+7|hah-ar.medi.alt=2+135|dotbelow-ar=1@167,185+0|behDotless-ar.init.hah=1@63,5+572|waw-ar=0@400,0+909", - "RaqqSura.ttf": "alef-ar.fina=3+90|dotabove-ar=2@-22,198+0|hah-ar.medi.alt=2+135|dotbelow-ar=1@167,185+0|behDotless-ar.init.hah=1@63,5+572|waw-ar=0+516" + "only": "RaqqSura.ttf", + "input": "منه", + "expectation": "heh-ar.fina=2+336|dotabove-ar.beh=1@-15,336+0|behDotless-ar.medi.med=1+100|meem-ar.init=0+425", + "variations": { + "MSHQ": 10.0 } }, { - "input": "ولجا", - "expectation": { - "default": "alef-ar.fina=3+101|dotbelow-ar=2@220,-112+0|_c.hah.beh=2+7|hah-ar.medi.alt=2+135|lam-ar.init.hah1.alt=1@63,5+578|waw-ar=0@400,0+909", - "RaqqSura.ttf": "alef-ar.fina=3+90|dotbelow-ar=2@213,-112+0|hah-ar.medi.alt=2+135|lam-ar.init.hah1.alt=1@63,5+578|waw-ar=0+516" + "only": "RaqqSura.ttf", + "input": "مُل", + "expectation": "lam-ar.fina=2+177|damma-ar=0@-62,92+0|meem-ar.init=0+425", + "variations": { + "MSHQ": 10.0 } }, { - "input": "يتخذ", - "expectation": { - "default": "dotabove-ar=3@426,249+0|dal-ar.fina=3+875|dotabove-ar=2@-33,220+0|_c.hah.dal=2+71|hah-ar.medi=2@-71,0+62|twodotsverticalabove-ar.beh=1@-22,424+0|behDotless-ar.medi=1@0,122+128|twodotsverticalbelow-ar=0@131,99+0|_c.seen.beh=0@0,122+0|behDotless-ar.init.high=0@0,122+340", - "RaqqSura.ttf": "dotabove-ar=3@420,249+0|dal-ar.fina=3+875|dotabove-ar=2@-33,220+0|hah-ar.medi=2+133|twodotsverticalabove-ar.beh=1@-45,427+0|behDotless-ar.medi=1@0,122+100|twodotsverticalbelow-ar=0@51,49+0|behDotless-ar.init.high=0@0,122+360" + "only": "RaqqSura.ttf", + "input": "نسا", + "expectation": "alef-ar.fina=2+90|seen-ar.medi=1+345|dotabove-ar.beh=0@-15,380+0|behDotless-ar.init.high=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "يجبي", - "expectation": { - "default": "twodotsverticalbelow-ar=3@339,-334+0|alefMaksura-ar.fina=3+282|dotbelow-ar=2@79,-110+0|behDotless-ar.medi=2+128|dotbelow-ar=1@220,-112+0|_c.hah.beh=1+7|hah-ar.medi.alt=1+135|twodotsverticalbelow-ar=0@167,158+0|behDotless-ar.init.hah=0@63,5+572", - "RaqqSura.ttf": "twodotsverticalbelow-ar=2@311,-329+0|dotbelow-ar=2@-14,-110+0|behDotless_alefMaksura-ar.fina=2+110|dotbelow-ar=1@213,-112+0|hah-ar.medi.alt=1+135|twodotsverticalbelow-ar=0@167,158+0|behDotless-ar.init.hah=0@63,5+572" + "only": "RaqqSura.ttf", + "input": "نسب", + "expectation": "dotbelow-ar=2@834,-111+0|behDotless-ar.fina=2+984|seen-ar.medi=1+345|dotabove-ar.beh=0@-15,380+0|behDotless-ar.init.high=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "يحيي", - "expectation": { - "default": "twodotsverticalbelow-ar=3@339,-334+0|alefMaksura-ar.fina=3+282|twodotsverticalbelow-ar=2@79,-137+0|behDotless-ar.medi=2+128|_c.hah.beh=1+7|hah-ar.medi.alt=1+135|twodotsverticalbelow-ar=0@167,158+0|behDotless-ar.init.hah=0@63,5+572", - "RaqqSura.ttf": "twodotsverticalbelow-ar=2@311,-329+0|twodotsverticalbelow-ar=2@-14,-137+0|behDotless_alefMaksura-ar.fina=2+110|hah-ar.medi.alt=1+135|twodotsverticalbelow-ar=0@167,158+0|behDotless-ar.init.hah=0@63,5+572" + "only": "RaqqSura.ttf", + "input": "نسد", + "expectation": "dal-ar.fina=2+875|seen-ar.medi=1@-15,0+330|dotabove-ar.beh=0@-15,380+0|behDotless-ar.init.high=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "يشعر", - "expectation": { - "default": "reh-ar.fina=3+393|_c.ain.medi.reh=2+7|ain-ar.medi=2+220|threedotshorizontalabove-ar.2=1@0,125+0|_c.seen.beh=1+0|seen-ar.medi.low=1+411|twodotsverticalbelow-ar=0@72,-73+0|_c.seen.beh=0+0|behDotless-ar.init.med=0+130", - "RaqqSura.ttf": "reh-ar.fina=3+387|ain-ar.medi=2+202|threedotshorizontalabove-ar.1=1@-9,171+0|seen-ar.medi=1+345|twodotsverticalbelow-ar=0@51,-73+0|behDotless-ar.init.high=0+100" + "only": "RaqqSura.ttf", + "input": "نسر", + "expectation": "reh-ar.fina=2+387|seen-ar.medi=1+345|dotabove-ar.beh=0@-15,380+0|behDotless-ar.init.high=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "يلجل", - "expectation": { - "default": "lam-ar.fina=3+177|dotbelow-ar=2@220,-112+0|_c.hah.beh=2+7|hah-ar.medi=2+133|lam-ar.medi.hah1=1@0,7+125|twodotsverticalbelow-ar=0@122,99+0|_c.seen.beh=0@0,122+0|behDotless-ar.init=0@0,122+340", - "RaqqSura.ttf": "lam-ar.fina=3+177|dotbelow-ar=2@213,-112+0|hah-ar.medi=2+133|lam-ar.medi.hah1=1@0,7+125|twodotsverticalbelow-ar=0@72,49+0|behDotless-ar.init=0@0,122+360" + "only": "RaqqSura.ttf", + "input": "نسس", + "expectation": "seen-ar.fina=2+484|seen-ar.medi=1+345|dotabove-ar.beh=0@-15,380+0|behDotless-ar.init.high=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "يلمح", - "expectation": { - "default": "hah-ar.fina=3+417|meem-ar.medi.round=2@0,115+425|lam-ar.medi.hah1.round=1+94|twodotsverticalbelow-ar=0@72,42+0|_c.seen.beh=0@0,115+0|behDotless-ar.init=0@0,115+130", - "RaqqSura.ttf": "hah-ar.fina=3+417|meem-ar.medi.round=2@0,115+425|lam-ar.medi.hah1.round=1+94|twodotsverticalbelow-ar=0@72,42+0|behDotless-ar.init=0@0,115+100" + "only": "RaqqSura.ttf", + "input": "نسض", + "expectation": "dotabove-ar=2@398,247+0|sad-ar.fina=2+876|seen-ar.medi=1@-15,0+330|dotabove-ar.beh=0@-15,380+0|behDotless-ar.init.high=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "يمما", - "expectation": { - "default": "alef-ar.fina=3+101|_c.seen.beh=2+0|meem-ar.medi.round=2+425|meem-ar.medi.round2=1+398|twodotsverticalbelow-ar=0@72,-73+0|behDotless-ar.init=0+130", - "RaqqSura.ttf": "alef-ar.fina=3+90|meem-ar.medi.round=2+425|meem-ar.medi.round2=1+398|twodotsverticalbelow-ar=0@72,-73+0|behDotless-ar.init=0+100" + "only": "RaqqSura.ttf", + "input": "نسط", + "expectation": "tah-ar.fina=2+798|seen-ar.medi=1@-15,0+330|dotabove-ar.beh=0@-15,380+0|behDotless-ar.init.high=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "يممر", - "expectation": { - "default": "reh-ar.fina=3+393|meem-ar.medi.round3=2@20,0+418|meem-ar.medi.round2=1+398|twodotsverticalbelow-ar=0@72,-73+0|behDotless-ar.init=0+130", - "RaqqSura.ttf": "reh-ar.fina=3+387|meem-ar.medi.round3=2@20,0+418|meem-ar.medi.round2=1+398|twodotsverticalbelow-ar=0@72,-73+0|behDotless-ar.init=0+100" + "only": "RaqqSura.ttf", + "input": "نسع", + "expectation": "ain-ar.fina=2+262|seen-ar.medi=1+345|dotabove-ar.beh=0@-15,380+0|behDotless-ar.init.high=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "يممو", - "expectation": { - "default": "waw-ar.fina.round=3+492|meem-ar.medi.round3=2+398|meem-ar.medi.round2=1+398|twodotsverticalbelow-ar=0@72,-73+0|behDotless-ar.init=0+130", - "RaqqSura.ttf": "waw-ar.fina.round=3+492|meem-ar.medi.round3=2+398|meem-ar.medi.round2=1+398|twodotsverticalbelow-ar=0@72,-73+0|behDotless-ar.init=0+100" + "only": "RaqqSura.ttf", + "input": "نسف", + "expectation": "dotabove-ar=2@609,319+0|fehDotless-ar.fina=2+997|seen-ar.medi=1+345|dotabove-ar.beh=0@-15,380+0|behDotless-ar.init.high=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "حالت", + "only": "RaqqSura.ttf", + "input": "نسق", + "expectation": "twodotsverticalabove-ar=2@-62,265+0|qafDotless-ar.fina=2+373|seen-ar.medi=1+345|dotabove-ar.beh=0@-15,380+0|behDotless-ar.init.high=0+100", "variations": { - "SPAC": -100 - }, - "expectation": { - "default": "twodotsverticalabove-ar=3@803,264+0|behDotless-ar.fina=3+984|_c.seen.beh=2+0|lam-ar.init.short=2+123|alef-ar.fina=1@20,0+121|_c.hah.beh=0+7|hah-ar.init=0+703", - "RaqqSura.ttf": "twodotsverticalabove-ar=3@803,264+0|behDotless-ar.fina=3+984|lam-ar.init.short=2+100|alef-ar.fina.lam=1+90|hah-ar.init=0+703" + "MSHQ": 10.0 } }, { - "input": "قالت", + "only": "RaqqSura.ttf", + "input": "نسك", + "expectation": "kaf-ar.fina=2+889|seen-ar.medi=1@-15,0+330|dotabove-ar.beh=0@-15,380+0|behDotless-ar.init.high=0+100", "variations": { - "SPAC": -100 - }, - "expectation": { - "default": "twodotsverticalabove-ar=3@803,264+0|behDotless-ar.fina=3+984|_c.seen.beh=2+0|lam-ar.init.short=2+123|twodotsverticalabove-ar=0@135,402+0|fehDotless_alef-ar=0@12,0+572", - "RaqqSura.ttf": "twodotsverticalabove-ar=3@803,264+0|behDotless-ar.fina=3+984|lam-ar.init.short=2+100|twodotsverticalabove-ar=0@115,402+0|fehDotless_alef-ar=0@-8,0+552" + "MSHQ": 10.0 } }, { - "input": "ببسي", - "features": { - "salt": true - }, - "expectation": { - "default": "twodotsverticalbelow-ar=2@339,-337+0|seen_alefMaksura-ar.fina=2+343|dotbelow-ar=1@14,-110+0|_c.seen.beh=1+0|behDotless-ar.medi.high=1+128|dotbelow-ar=0@72,-46+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", - "RaqqSura.ttf": "twodotsverticalbelow-ar=2@339,-337+0|seen_alefMaksura-ar.fina=2+343|dotbelow-ar=1@-13,-110+0|behDotless-ar.medi.high=1+100|dotbelow-ar=0@72,-46+0|behDotless-ar.init=0+100" + "only": "RaqqSura.ttf", + "input": "نسل", + "expectation": "lam-ar.fina=2+177|seen-ar.medi=1+345|dotabove-ar.beh=0@-15,380+0|behDotless-ar.init.high=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "بسسي", - "features": { - "salt": true - }, - "expectation": { - "default": "twodotsverticalbelow-ar=2@339,-337+0|seen_alefMaksura-ar.fina=2+343|_c.seen.beh=1+0|seen-ar.medi.low=1+411|dotbelow-ar=0@72,-46+0|_c.seen.beh=0+0|behDotless-ar.init.med=0+130", - "RaqqSura.ttf": "twodotsverticalbelow-ar=2@339,-337+0|seen_alefMaksura-ar.fina=2+343|seen-ar.medi=1+345|dotbelow-ar=0@51,-46+0|behDotless-ar.init.high=0+100" + "only": "RaqqSura.ttf", + "input": "نسم", + "expectation": "meem-ar.fina=2+567|seen-ar.medi=1+345|dotabove-ar.beh=0@-15,380+0|behDotless-ar.init.high=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "بصسي", - "features": { - "salt": true - }, - "expectation": { - "default": "twodotsverticalbelow-ar=2@339,-337+0|seen_alefMaksura-ar.fina=2+343|_c.seen.beh=1+0|sad-ar.medi=1+758|dotbelow-ar=0@51,-46+0|behDotless-ar.init=0@-21,0+109", - "RaqqSura.ttf": "twodotsverticalbelow-ar=2@339,-337+0|seen_alefMaksura-ar.fina=2+343|sad-ar.medi=1+758|dotbelow-ar=0@72,-46+0|behDotless-ar.init=0+100" + "only": "RaqqSura.ttf", + "input": "نسن", + "expectation": "dotabove-ar=2@-3,90+0|noonghunna-ar.fina=2+250|seen-ar.medi=1+345|dotabove-ar.beh=0@-15,380+0|behDotless-ar.init.high=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "بطسي", - "features": { - "salt": true - }, - "expectation": { - "default": "twodotsverticalbelow-ar=2@339,-337+0|seen_alefMaksura-ar.fina=2+343|_c.seen.beh=1+0|tah-ar.medi=1+758|dotbelow-ar=0@51,-46+0|behDotless-ar.init=0@-21,0+109", - "RaqqSura.ttf": "twodotsverticalbelow-ar=2@339,-337+0|seen_alefMaksura-ar.fina=2+343|tah-ar.medi=1+758|dotbelow-ar=0@72,-46+0|behDotless-ar.init=0+100" + "only": "RaqqSura.ttf", + "input": "نسه", + "expectation": "heh-ar.fina=2+336|seen-ar.medi=1+345|dotabove-ar.beh=0@-15,380+0|behDotless-ar.init.high=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "بعسي", - "features": { - "salt": true - }, - "expectation": { - "default": "twodotsverticalbelow-ar=2@339,-337+0|seen_alefMaksura-ar.fina=2+343|_c.ain.medi.beh=1+66|ain-ar.medi=1+220|dotbelow-ar=0@81,-46+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", - "RaqqSura.ttf": "twodotsverticalbelow-ar=2@339,-337+0|seen_alefMaksura-ar.fina=2+343|ain-ar.medi=1+202|dotbelow-ar=0@51,-46+0|behDotless-ar.init.high=0+100" + "only": "RaqqSura.ttf", + "input": "نسو", + "expectation": "waw-ar.fina=2+477|seen-ar.medi=1+345|dotabove-ar.beh=0@-15,380+0|behDotless-ar.init.high=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "بفسي", - "features": { - "salt": true - }, - "expectation": { - "default": "twodotsverticalbelow-ar=2@339,-337+0|seen_alefMaksura-ar.fina=2+343|dotabove-ar=1@1,329+0|_c.feh.medi.beh=1+0|fehDotless-ar.medi=1+377|dotbelow-ar=0@72,-46+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", - "RaqqSura.ttf": "twodotsverticalbelow-ar=2@339,-337+0|seen_alefMaksura-ar.fina=2+343|dotabove-ar=1@1,329+0|fehDotless-ar.medi=1+377|dotbelow-ar=0@72,-46+0|behDotless-ar.init=0+100" + "only": "RaqqSura.ttf", + "input": "نسى", + "expectation": "seen_alefMaksura-ar.fina=1+343|dotabove-ar.beh=0@-15,380+0|behDotless-ar.init.high=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "بكسي", - "features": { - "salt": true - }, - "expectation": { - "default": "twodotsverticalbelow-ar=2@339,-337+0|seen_alefMaksura-ar.fina=2+343|kaf-ar.medi.alt=1@-5,0+753|dotbelow-ar=0@51,-46+0|behDotless-ar.init=0@-21,0+109", - "RaqqSura.ttf": "twodotsverticalbelow-ar=2@339,-337+0|seen_alefMaksura-ar.fina=2+343|kaf-ar.medi=1@-5,0+753|dotbelow-ar=0@72,-46+0|behDotless-ar.init=0+100" + "only": "RaqqSura.ttf", + "input": "نسے", + "expectation": "yehbarree-ar.fina=2+297|seen-ar.medi=1@-32,0+313|dotabove-ar.beh=0@-15,380+0|behDotless-ar.init.high=0+420", + "variations": { + "MSHQ": 10.0 } }, { - "input": "بلسي", - "features": { - "salt": true - }, - "expectation": { - "default": "twodotsverticalbelow-ar=2@339,-337+0|seen_alefMaksura-ar.fina=2+343|_c.seen.beh=1+0|lam-ar.medi=1+125|dotbelow-ar=0@72,-46+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", - "RaqqSura.ttf": "twodotsverticalbelow-ar=2@339,-337+0|seen_alefMaksura-ar.fina=2+343|lam-ar.medi=1+100|dotbelow-ar=0@72,-46+0|behDotless-ar.init=0+100" + "only": "RaqqSura.ttf", + "input": "نشا", + "expectation": "alef-ar.fina=2+90|threedotshorizontalabove-ar.1=1@-9,171+0|seen-ar.medi=1+345|dotabove-ar.beh=0@-15,380+0|behDotless-ar.init.high=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "بمسي", - "features": { - "salt": true - }, - "expectation": { - "default": "twodotsverticalbelow-ar=2@339,-337+0|seen_alefMaksura-ar.fina=2+343|_c.seen.beh=1+0|meem-ar.medi=1+380|dotbelow-ar=0@47,-46+0|behDotless-ar.init=0@-25,0+105", - "RaqqSura.ttf": "twodotsverticalbelow-ar=2@339,-337+0|seen_alefMaksura-ar.fina=2+343|meem-ar.medi=1@-28,0+352|dotbelow-ar=0@72,-46+0|behDotless-ar.init=0+100" + "only": "RaqqSura.ttf", + "input": "نعا", + "expectation": "alef-ar.fina=2+90|ain-ar.medi=1+202|dotabove-ar.beh=0@-15,380+0|behDotless-ar.init.high=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "بهسي", - "features": { - "salt": true - }, - "expectation": { - "default": "twodotsverticalbelow-ar=2@339,-337+0|seen_alefMaksura-ar.fina=2+343|_c.feh.medi.beh=1+0|heh-ar.medi=1+357|dotbelow-ar=0@72,-46+0|_c.seen.beh=0+0|behDotless-ar.init.med=0+130", - "RaqqSura.ttf": "twodotsverticalbelow-ar=2@339,-337+0|seen_alefMaksura-ar.fina=2+343|heh-ar.medi=1@-26,0+328|dotbelow-ar=0@72,-46+0|behDotless-ar.init.med=0+100" + "only": "RaqqSura.ttf", + "input": "نعب", + "expectation": "dotbelow-ar=2@834,-111+0|behDotless-ar.fina=2+984|ain-ar.medi=1+202|dotabove-ar.beh=0@-15,380+0|behDotless-ar.init.high=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "عيسى", - "features": { - "salt": true - }, - "expectation": { - "default": "seen_alefMaksura-ar.fina=2+343|twodotsverticalbelow-ar=1@14,-137+0|_c.seen.beh=1+0|behDotless-ar.medi.high=1+128|_c.ain.init.beh=0+95|ain-ar.init=0@-50,0+640", - "RaqqSura.ttf": "seen_alefMaksura-ar.fina=2+343|twodotsverticalbelow-ar=1@-13,-137+0|behDotless-ar.medi.high=1+100|ain-ar.init=0+680" + "only": "RaqqSura.ttf", + "input": "نعد", + "expectation": "dal-ar.fina=2+875|ain-ar.medi=1+202|dotabove-ar.beh=0@-15,380+0|behDotless-ar.init.high=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "فلِي", - "features": { - "salt": true - }, - "expectation": { - "default": "twodotsverticalbelow-ar=3@259,-523+0|alefMaksura-ar.fina.salt=3+282|kasra-ar=1@48,-111+0|lam-ar.medi=1+125|dotabove-ar=0@-1,373+0|_c.feh.init.beh=0+174|fehDotless-ar.init=0@-114,0+220", - "RaqqSura.ttf": "twodotsverticalbelow-ar=1@311,-329+0|kasra-ar=1@-19,-132+0|lam_alefMaksura-ar.fina=1+110|dotabove-ar=0@-61,373+0|fehDotless-ar.init=0+334" + "only": "RaqqSura.ttf", + "input": "نعر", + "expectation": "reh-ar.fina=2+387|ain-ar.medi=1+202|dotabove-ar.beh=0@-15,380+0|behDotless-ar.init.high=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "لسسي", - "features": { - "salt": true - }, - "expectation": { - "default": "twodotsverticalbelow-ar=2@339,-337+0|seen_alefMaksura-ar.fina=2+343|_c.seen.beh=1+0|seen-ar.medi=1+401|_c.seen.beh=0+0|lam-ar.init=0+123", - "RaqqSura.ttf": "twodotsverticalbelow-ar=2@339,-337+0|seen_alefMaksura-ar.fina=2+343|seen-ar.medi=1+345|lam-ar.init=0+123" + "only": "RaqqSura.ttf", + "input": "نعس", + "expectation": "seen-ar.fina=2+484|ain-ar.medi=1+202|dotabove-ar.beh=0@-15,380+0|behDotless-ar.init.high=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "ممسي", - "features": { - "salt": true - }, - "expectation": { - "default": "twodotsverticalbelow-ar=2@339,-337+0|seen_alefMaksura-ar.fina=2+343|_c.seen.beh=1+0|meem-ar.medi.round=1+425|meem-ar.init.round=0+398", - "RaqqSura.ttf": "twodotsverticalbelow-ar=2@339,-337+0|seen_alefMaksura-ar.fina=2+343|meem-ar.medi.round=1+425|meem-ar.init.round=0+398" + "only": "RaqqSura.ttf", + "input": "نعض", + "expectation": "dotabove-ar=2@398,247+0|sad-ar.fina=2+876|ain-ar.medi=1+202|dotabove-ar.beh=0@-15,380+0|behDotless-ar.init.high=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "يجبي", - "features": { - "salt": true - }, - "expectation": { - "default": "twodotsverticalbelow-ar=3@259,-523+0|alefMaksura-ar.fina.salt=3+282|dotbelow-ar=2@9,-110+0|behDotless-ar.medi=2+128|dotbelow-ar=1@220,-112+0|_c.hah.beh=1+7|hah-ar.medi.alt=1+135|twodotsverticalbelow-ar=0@167,158+0|behDotless-ar.init.hah=0@63,5+572", - "RaqqSura.ttf": "twodotsverticalbelow-ar=2@311,-329+0|dotbelow-ar=2@-14,-110+0|behDotless_alefMaksura-ar.fina=2+110|dotbelow-ar=1@213,-112+0|hah-ar.medi.alt=1+135|twodotsverticalbelow-ar=0@167,158+0|behDotless-ar.init.hah=0@63,5+572" + "only": "RaqqSura.ttf", + "input": "نعط", + "expectation": "tah-ar.fina=2+798|ain-ar.medi=1+202|dotabove-ar.beh=0@-15,380+0|behDotless-ar.init.high=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "يحيي", - "features": { - "salt": true - }, - "expectation": { - "default": "twodotsverticalbelow-ar=3@259,-523+0|alefMaksura-ar.fina.salt=3+282|twodotsverticalbelow-ar=2@9,-137+0|behDotless-ar.medi=2+128|_c.hah.beh=1+7|hah-ar.medi.alt=1+135|twodotsverticalbelow-ar=0@167,158+0|behDotless-ar.init.hah=0@63,5+572", - "RaqqSura.ttf": "twodotsverticalbelow-ar=2@311,-329+0|twodotsverticalbelow-ar=2@-14,-137+0|behDotless_alefMaksura-ar.fina=2+110|hah-ar.medi.alt=1+135|twodotsverticalbelow-ar=0@167,158+0|behDotless-ar.init.hah=0@63,5+572" + "only": "RaqqSura.ttf", + "input": "نعع", + "expectation": "ain-ar.fina=2+262|ain-ar.medi=1+202|dotabove-ar.beh=0@-15,380+0|behDotless-ar.init.high=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝١٠٠", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar.10=0+1117|ayah.100=1+0", - "RaqqSura.ttf": "endofayah-ar.10=0+1117|ayah.100=1+0" + "only": "RaqqSura.ttf", + "input": "نعف", + "expectation": "dotabove-ar=2@609,319+0|fehDotless-ar.fina=2+997|ain-ar.medi=1+202|dotabove-ar.beh=0@-15,380+0|behDotless-ar.init.high=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝١٠١", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "نعق", + "expectation": "twodotsverticalabove-ar=2@-62,265+0|qafDotless-ar.fina=2+373|ain-ar.medi=1+202|dotabove-ar.beh=0@-15,380+0|behDotless-ar.init.high=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝١٠٢", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "نعك", + "expectation": "kaf-ar.fina=2+889|ain-ar.medi=1+202|dotabove-ar.beh=0@-15,380+0|behDotless-ar.init.high=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝١٠٣", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "نعل", + "expectation": "lam-ar.fina=2+177|ain-ar.medi=1+202|dotabove-ar.beh=0@-15,380+0|behDotless-ar.init.high=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝١٠٤", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "نعم", + "expectation": "meem-ar.fina=2+567|ain-ar.medi=1+202|dotabove-ar.beh=0@-15,380+0|behDotless-ar.init.high=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝١٠٥", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar.05=0+400", - "RaqqSura.ttf": "endofayah-ar.05=0+400" + "only": "RaqqSura.ttf", + "input": "نعن", + "expectation": "dotabove-ar=2@-3,90+0|noonghunna-ar.fina=2+250|ain-ar.medi=1+202|dotabove-ar.beh=0@-15,380+0|behDotless-ar.init.high=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝١٠٦", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "نعه", + "expectation": "heh-ar.fina=2+336|ain-ar.medi=1+202|dotabove-ar.beh=0@-15,380+0|behDotless-ar.init.high=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝١٠٧", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "نعو", + "expectation": "waw-ar.fina=2+477|ain-ar.medi=1+202|dotabove-ar.beh=0@-15,380+0|behDotless-ar.init.high=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝١٠٨", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "نعى", + "expectation": "alefMaksura-ar.fina=2+282|ain-ar.medi=1+202|dotabove-ar.beh=0@-15,380+0|behDotless-ar.init.high=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝١٠٩", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "نعے", + "expectation": "yehbarree-ar.fina=2+297|ain-ar.medi=1+202|dotabove-ar.beh=0@-15,380+0|behDotless-ar.init.high=0+560", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝١١٠", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar.10=0+1117|ayah.110=1+0", - "RaqqSura.ttf": "endofayah-ar.10=0+1117|ayah.110=1+0" + "only": "RaqqSura.ttf", + "input": "نـا", + "expectation": "alef-ar.fina.kashida=2+198|kashida-ar=1+100|dotabove-ar=0@-20,297+0|behDotless-ar.init=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝١١١", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "نفا", + "expectation": "alef-ar.fina=2+90|dotabove-ar=1@1,329+0|fehDotless-ar.medi=1+377|dotabove-ar=0@-20,297+0|behDotless-ar.init=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝١١٢", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "نفب", + "expectation": "dotbelow-ar=2@834,-111+0|behDotless-ar.fina=2+984|dotabove-ar=1@1,329+0|fehDotless-ar.medi=1+377|dotabove-ar=0@-20,297+0|behDotless-ar.init=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝١١٣", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "نفد", + "expectation": "dal-ar.fina=2+875|dotabove-ar=1@1,329+0|fehDotless-ar.medi=1+377|dotabove-ar=0@-20,297+0|behDotless-ar.init=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝١١٤", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "نفر", + "expectation": "reh-ar.fina=2+387|dotabove-ar=1@1,329+0|fehDotless-ar.medi=1+377|dotabove-ar=0@-20,297+0|behDotless-ar.init=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝١١٥", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar.05=0+400", - "RaqqSura.ttf": "endofayah-ar.05=0+400" + "only": "RaqqSura.ttf", + "input": "نفس", + "expectation": "seen-ar.fina=2+484|dotabove-ar=1@1,329+0|fehDotless-ar.medi=1+377|dotabove-ar=0@-20,297+0|behDotless-ar.init=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝١١٦", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "نفض", + "expectation": "dotabove-ar=2@398,247+0|sad-ar.fina=2+876|dotabove-ar=1@1,329+0|fehDotless-ar.medi=1+377|dotabove-ar=0@-20,297+0|behDotless-ar.init=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝١١٧", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "نفط", + "expectation": "tah-ar.fina=2+798|dotabove-ar=1@1,329+0|fehDotless-ar.medi=1+377|dotabove-ar=0@-20,297+0|behDotless-ar.init=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝١١٨", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "نفع", + "expectation": "ain-ar.fina=2+262|dotabove-ar=1@1,329+0|fehDotless-ar.medi=1+377|dotabove-ar=0@-20,297+0|behDotless-ar.init=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝١١٩", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "نفف", + "expectation": "dotabove-ar=2@609,319+0|fehDotless-ar.fina=2+997|dotabove-ar=1@1,329+0|fehDotless-ar.medi=1+377|dotabove-ar=0@-20,297+0|behDotless-ar.init=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝١٢٠", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar.10=0+1117|ayah.120=1+0", - "RaqqSura.ttf": "endofayah-ar.10=0+1117|ayah.120=1+0" + "only": "RaqqSura.ttf", + "input": "نفق", + "expectation": "twodotsverticalabove-ar=2@-62,265+0|qafDotless-ar.fina=2+373|dotabove-ar=1@1,329+0|fehDotless-ar.medi=1+377|dotabove-ar=0@-20,297+0|behDotless-ar.init=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝١٢١", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "نفك", + "expectation": "kaf-ar.fina=2+889|dotabove-ar=1@1,329+0|fehDotless-ar.medi=1+377|dotabove-ar=0@-20,297+0|behDotless-ar.init=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝١٢٢", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "نفل", + "expectation": "lam-ar.fina=2+177|dotabove-ar=1@1,329+0|fehDotless-ar.medi=1+377|dotabove-ar=0@-20,297+0|behDotless-ar.init=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝١٢٣", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "نفم", + "expectation": "meem-ar.fina=2+567|dotabove-ar=1@1,329+0|fehDotless-ar.medi=1+377|dotabove-ar=0@-20,297+0|behDotless-ar.init=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝١٢٤", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "نفن", + "expectation": "dotabove-ar=2@-3,90+0|noonghunna-ar.fina=2+250|dotabove-ar=1@1,329+0|fehDotless-ar.medi=1+377|dotabove-ar=0@-20,297+0|behDotless-ar.init=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝١٢٥", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar.05=0+400", - "RaqqSura.ttf": "endofayah-ar.05=0+400" + "only": "RaqqSura.ttf", + "input": "نفه", + "expectation": "heh-ar.fina=2+336|dotabove-ar=1@1,329+0|fehDotless-ar.medi=1+377|dotabove-ar=0@-20,297+0|behDotless-ar.init=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝١٢٦", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "نفو", + "expectation": "waw-ar.fina=2+477|dotabove-ar=1@1,329+0|fehDotless-ar.medi=1+377|dotabove-ar=0@-20,297+0|behDotless-ar.init=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝١٢٧", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "نفى", + "expectation": "alefMaksura-ar.fina=2+282|dotabove-ar=1@1,329+0|fehDotless-ar.medi=1+377|dotabove-ar=0@-20,297+0|behDotless-ar.init=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝١٢٨", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "نفے", + "expectation": "yehbarree-ar.fina=2+297|dotabove-ar=1@1,329+0|fehDotless-ar.medi=1+377|dotabove-ar=0@-20,297+0|behDotless-ar.init=0+390", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝١٢٩", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "نقد", + "expectation": "dal-ar.fina=2+875|twodotsverticalabove-ar=1@-29,337+0|fehDotless-ar.medi=1+377|dotabove-ar=0@-20,297+0|behDotless-ar.init=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝١٣٠", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar.10=0+1117|ayah.130=1+0", - "RaqqSura.ttf": "endofayah-ar.10=0+1117|ayah.130=1+0" + "only": "RaqqSura.ttf", + "input": "ننا", + "expectation": "alef-ar.fina=2+90|dotabove-ar.beh=1@-15,297+0|behDotless-ar.medi=1+100|dotabove-ar.beh=0@-15,380+0|behDotless-ar.init.high=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝١٣١", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "نهم", + "expectation": "meem-ar.fina.round=2+554|heh-ar.medi.round=1+320|dotabove-ar=0@-20,336+0|behDotless-ar.init.med=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝١٣٢", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "نين", + "expectation": "dotabove-ar=2@-3,90+0|noonghunna-ar.fina=2+250|twodotsverticalbelow-ar=1@50,-137+0|behDotless-ar.medi.round=1@-6,0+104|dotabove-ar.beh=0@-15,380+0|behDotless-ar.init.high=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝١٣٣", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "هسي", + "expectation": "twodotsverticalbelow-ar=1@339,-337+0|seen_alefMaksura-ar.fina=1+343|heh-ar.init=0@-26,0+335", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝١٣٤", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "وسے", + "expectation": "yehbarree-ar.fina.baseline=2+297|seen-ar.init=1@-32,110+733|waw-ar=0@-20,0+496", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝١٣٥", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar.05=0+400", - "RaqqSura.ttf": "endofayah-ar.05=0+400" + "only": "RaqqSura.ttf", + "input": "وصے", + "expectation": "yehbarree-ar.fina.baseline=2+297|sad-ar.init=1@0,110+765|waw-ar=0@-5,0+511", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝١٣٦", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "وفے", + "expectation": "yehbarree-ar.fina.baseline=2+297|dotabove-ar=1@-67,483+0|fehDotless-ar.init.yeh=1@0,110+768|waw-ar=0@-80,0+436", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝١٣٧", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "ولح", + "expectation": "hah-ar.fina.alt=2+407|lam-ar.init.hah1.alt=1@63,0+578|waw-ar=0+516", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝١٣٨", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "ىِٕ", + "expectation": "kasra-ar=0@155,-289+0|alefMaksura-ar=0+393", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝١٣٩", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "يعج", + "expectation": "dotbelow-ar=2@571,-122+0|hah-ar.fina=2+417|ain-ar.medi=1@0,115+202|twodotsverticalbelow-ar=0@51,42+0|behDotless-ar.init.high=0@0,115+260", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝١٤٠", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar.10=0+1117|ayah.140=1+0", - "RaqqSura.ttf": "endofayah-ar.10=0+1117|ayah.140=1+0" + "only": "RaqqSura.ttf", + "input": "يعظ", + "expectation": "dotabove-ar=2@350,247+0|tah-ar.fina=2+798|ain-ar.medi=1+202|twodotsverticalbelow-ar=0@51,-73+0|behDotless-ar.init.high=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝١٤١", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "يقظ", + "expectation": "dotabove-ar=2@350,247+0|tah-ar.fina=2+798|twodotsverticalabove-ar=1@-29,337+0|fehDotless-ar.medi=1+377|twodotsverticalbelow-ar=0@72,-73+0|behDotless-ar.init=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝١٤٢", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "يمر", + "expectation": "reh-ar.fina=2+387|meem-ar.medi.round2=1@20,0+418|twodotsverticalbelow-ar=0@72,-73+0|behDotless-ar.init=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝١٤٣", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "يمن", + "expectation": "dotabove-ar=2@-3,90+0|noonghunna-ar.fina=2+250|meem-ar.medi.round2=1+398|twodotsverticalbelow-ar=0@72,-73+0|behDotless-ar.init=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝١٤٤", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "وقح لا", + "expectation": "lam_alef-ar=4+542|space.mark=3+0|hah-ar.fina=2+417|twodotsverticalabove-ar=1@-86,496+0|fehDotless-ar.init.hah=1@11,115+479|waw-ar=0@-80,0+436", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝١٤٥", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar.05=0+400", - "RaqqSura.ttf": "endofayah-ar.05=0+400" + "only": "RaqqSura.ttf", + "input": "ءامن", + "expectation": "dotabove-ar=3@-3,90+0|noonghunna-ar.fina=3+250|meem-ar.init.round=2+398|madda-ar=1@-158,551+0|alef-ar=1@-21,0+621|hamza-ar=0+0", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝١٤٦", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "أضاء", + "expectation": "madda-ar=3@-161,560+0|alef-ar.fina=2+90|dotabove-ar=1@310,247+0|sad-ar.init=1+765|fatha-ar=0@38,547+0|alef-ar=0@-35,0+607", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝١٤٧", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "ابطح", + "expectation": "hah-ar.fina=3+417|tah-ar.medi.hah1=2+758|dotbelow-ar=1@72,69+0|behDotless-ar.init=1@0,115+100|alef-ar=0+642", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝١٤٨", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "اطيح", + "expectation": "hah-ar.fina=3+417|twodotsverticalbelow-ar=2@376,-42+0|behDotless-ar.medi=2@0,115+100|tah-ar.init.hah1=1+765|alef-ar=0+642", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝١٤٩", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "افنے", + "expectation": "yehbarree-ar.fina=3+297|dotabove-ar.beh=2@-15,297+0|behDotless-ar.medi=2+100|dotabove-ar=1@-61,373+0|fehDotless-ar.init=1+664|alef-ar=0@-13,0+629", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝١٥٠", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar.10=0+1117|ayah.150=1+0", - "RaqqSura.ttf": "endofayah-ar.10=0+1117|ayah.150=1+0" + "only": "RaqqSura.ttf", + "input": "الحا", + "expectation": "alef-ar.fina=3+90|hah-ar.medi.alt=2+135|lam-ar.init.hah1.alt=1@63,5+578|alef-ar=0+642", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝١٥١", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "الحج", + "expectation": "dotbelow-ar=3@571,-122+0|hah-ar.fina=3+417|hah-ar.medi.hah.alt=2@0,115+109|lam-ar.init.hah2.alt=1@63,5+578|alef-ar=0+642", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝١٥٢", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "الله", + "expectation": "lam_lam_heh-ar=1+573|alef-ar=0+642", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝١٥٣", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "انحح", + "expectation": "hah-ar.fina=3+417|hah-ar.medi.hah.alt=2@0,115+109|dotabove-ar.beh=1@44,499+0|behDotless-ar.init.hah=1@63,105+572|alef-ar=0+642", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝١٥٤", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "اوتے", + "expectation": "yehbarree-ar.fina.baseline=3+297|twodotsverticalabove-ar=2@-50,415+0|behDotless-ar.init=2@0,110+760|waw-ar=1@-20,0+496|alef-ar=0@-22,0+620", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝١٥٥", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar.05=0+400", - "RaqqSura.ttf": "endofayah-ar.05=0+400" + "only": "RaqqSura.ttf", + "input": "بببا", + "expectation": "alef-ar.fina=3+90|dotbelow-ar=2@-19,-110+0|behDotless-ar.medi=2+100|dotbelow-ar=1@-13,-110+0|behDotless-ar.medi.high=1+100|dotbelow-ar=0@72,-46+0|behDotless-ar.init=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝١٥٦", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "ببسه", + "expectation": "heh-ar.fina=3+336|seen-ar.medi=2+345|dotbelow-ar=1@-13,-110+0|behDotless-ar.medi.high=1+100|dotbelow-ar=0@51,-46+0|behDotless-ar.init.high=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝١٥٧", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "ببسي", + "expectation": "twodotsverticalbelow-ar=2@339,-337+0|seen_alefMaksura-ar.fina=2+343|dotbelow-ar=1@-13,-110+0|behDotless-ar.medi.high=1+100|dotbelow-ar=0@72,-46+0|behDotless-ar.init=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝١٥٨", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "بتمح", + "expectation": "hah-ar.fina=3+417|meem-ar.medi.round=2@0,115+425|twodotsverticalabove-ar.beh=1@-41,420+0|behDotless-ar.medi.round=1@-6,115+104|dotbelow-ar=0@51,69+0|behDotless-ar.init.high=0@0,115+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝١٥٩", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "بسبه", + "expectation": "heh-ar.fina=3+336|dotbelow-ar=2@-13,-110+0|behDotless-ar.medi.med=2+100|seen-ar.medi=1+345|dotbelow-ar=0@51,-46+0|behDotless-ar.init.high=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝١٦٠", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar.10=0+1117|ayah.160=1+0", - "RaqqSura.ttf": "endofayah-ar.10=0+1117|ayah.160=1+0" + "only": "RaqqSura.ttf", + "input": "بسسي", + "expectation": "twodotsverticalbelow-ar=2@339,-337+0|seen_alefMaksura-ar.fina=2+343|seen-ar.medi=1+345|dotbelow-ar=0@51,-46+0|behDotless-ar.init.high=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝١٦١", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "بصبا", + "expectation": "alef-ar.fina=3+90|dotbelow-ar=2@-19,-110+0|behDotless-ar.medi=2+100|sad-ar.medi=1+758|dotbelow-ar=0@72,-46+0|behDotless-ar.init=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝١٦٢", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "بصسي", + "expectation": "twodotsverticalbelow-ar=2@339,-337+0|seen_alefMaksura-ar.fina=2+343|sad-ar.medi=1+758|dotbelow-ar=0@72,-46+0|behDotless-ar.init=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝١٦٣", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "بطبا", + "expectation": "alef-ar.fina=3+90|dotbelow-ar=2@-19,-110+0|behDotless-ar.medi=2+100|tah-ar.medi=1+758|dotbelow-ar=0@72,-46+0|behDotless-ar.init=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝١٦٤", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "بطسي", + "expectation": "twodotsverticalbelow-ar=2@339,-337+0|seen_alefMaksura-ar.fina=2+343|tah-ar.medi=1+758|dotbelow-ar=0@72,-46+0|behDotless-ar.init=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝١٦٥", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar.05=0+400", - "RaqqSura.ttf": "endofayah-ar.05=0+400" + "only": "RaqqSura.ttf", + "input": "بعبه", + "expectation": "heh-ar.fina=3+336|dotbelow-ar=2@-13,-110+0|behDotless-ar.medi.med=2+100|ain-ar.medi=1+202|dotbelow-ar=0@51,-46+0|behDotless-ar.init.high=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝١٦٦", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "بعجل", + "expectation": "lam-ar.fina=3+177|dotbelow-ar=2@213,-112+0|hah-ar.medi=2+133|ain-ar.medi=1@0,122+202|dotbelow-ar=0@51,76+0|behDotless-ar.init.high=0@0,122+260", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝١٦٧", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "بعسي", + "expectation": "twodotsverticalbelow-ar=2@339,-337+0|seen_alefMaksura-ar.fina=2+343|ain-ar.medi=1+202|dotbelow-ar=0@51,-46+0|behDotless-ar.init.high=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝١٦٨", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "بــك", + "expectation": "kaf-ar.fina=3+889|kashida-ar=2+100|kashida-ar=1+100|dotbelow-ar=0@72,-46+0|behDotless-ar.init=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝١٦٩", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "بفبه", + "expectation": "heh-ar.fina=3+336|dotbelow-ar=2@-13,-110+0|behDotless-ar.medi.med=2+100|dotabove-ar=1@1,329+0|fehDotless-ar.medi=1+377|dotbelow-ar=0@72,-46+0|behDotless-ar.init=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝١٧٠", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar.10=0+1117|ayah.170=1+0", - "RaqqSura.ttf": "endofayah-ar.10=0+1117|ayah.170=1+0" + "only": "RaqqSura.ttf", + "input": "بفسي", + "expectation": "twodotsverticalbelow-ar=2@339,-337+0|seen_alefMaksura-ar.fina=2+343|dotabove-ar=1@1,329+0|fehDotless-ar.medi=1+377|dotbelow-ar=0@72,-46+0|behDotless-ar.init=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝١٧١", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "بكسي", + "expectation": "twodotsverticalbelow-ar=2@339,-337+0|seen_alefMaksura-ar.fina=2+343|kaf-ar.medi=1@-5,0+753|dotbelow-ar=0@72,-46+0|behDotless-ar.init=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝١٧٢", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "بكـا", + "expectation": "alef-ar.fina.kashida=3+198|kashida-ar=2+100|kaf-ar.medi=1+758|dotbelow-ar=0@72,-46+0|behDotless-ar.init=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝١٧٣", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "بكمم", + "expectation": "meem-ar.fina.round=3+554|meem-ar.medi.round2=2+398|kaf-ar.medi=1@-8,0+750|dotbelow-ar=0@72,-46+0|behDotless-ar.init=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝١٧٤", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "بلبا", + "expectation": "alef-ar.fina=3+90|dotbelow-ar=2@-19,-110+0|behDotless-ar.medi=2+100|lam-ar.medi=1+100|dotbelow-ar=0@72,-46+0|behDotless-ar.init=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝١٧٥", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar.05=0+400", - "RaqqSura.ttf": "endofayah-ar.05=0+400" + "only": "RaqqSura.ttf", + "input": "بلسي", + "expectation": "twodotsverticalbelow-ar=2@339,-337+0|seen_alefMaksura-ar.fina=2+343|lam-ar.medi=1+100|dotbelow-ar=0@72,-46+0|behDotless-ar.init=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝١٧٦", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "بللٍ", + "expectation": "kasratan-ar.alt=2@171,-277+0|lam-ar.fina.short=2+178|lam-ar.medi=1+100|dotbelow-ar=0@72,-46+0|behDotless-ar.init=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝١٧٧", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "بمسي", + "expectation": "twodotsverticalbelow-ar=2@339,-337+0|seen_alefMaksura-ar.fina=2+343|meem-ar.medi=1@-28,0+352|dotbelow-ar=0@72,-46+0|behDotless-ar.init=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝١٧٨", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "بمما", + "expectation": "alef-ar.fina=3+90|meem-ar.medi.round=2+425|meem-ar.medi.round2=1+398|dotbelow-ar=0@72,-46+0|behDotless-ar.init=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝١٧٩", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "بنخل", + "expectation": "lam-ar.fina=3+177|dotabove-ar=2@-33,220+0|hah-ar.medi=2+133|dotabove-ar.beh=1@-15,419+0|behDotless-ar.medi=1@0,122+100|dotbelow-ar=0@51,76+0|behDotless-ar.init.high=0@0,122+360", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝١٨٠", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar.10=0+1117|ayah.180=1+0", - "RaqqSura.ttf": "endofayah-ar.10=0+1117|ayah.180=1+0" + "only": "RaqqSura.ttf", + "input": "بنين", + "expectation": "dotabove-ar=3@-3,90+0|noonghunna-ar.fina=3+250|twodotsverticalbelow-ar=2@50,-137+0|behDotless-ar.medi.round=2@-6,0+104|dotabove-ar.beh=1@-15,382+0|behDotless-ar.medi.high=1+100|dotbelow-ar=0@72,-46+0|behDotless-ar.init=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝١٨١", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "بنيه", + "expectation": "heh-ar.fina=3+336|twodotsverticalbelow-ar=2@-19,-137+0|behDotless-ar.medi=2+100|dotabove-ar.beh=1@-15,382+0|behDotless-ar.medi.high=1+100|dotbelow-ar=0@72,-46+0|behDotless-ar.init=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝١٨٢", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "بهبا", + "expectation": "alef-ar.fina=3+90|dotbelow-ar=2@-19,-110+0|behDotless-ar.medi=2+100|heh-ar.medi=1@-26,0+328|dotbelow-ar=0@72,-46+0|behDotless-ar.init.med=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝١٨٣", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "بهجة", + "expectation": "twodotsverticalabove-ar=3@186,388+0|heh-ar.fina=3+336|dotbelow-ar=2@213,-112+0|hah-ar.medi=2+133|heh-ar.medi=1@0,122+354|dotbelow-ar=0@72,76+0|behDotless-ar.init.med=0@0,122+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝١٨٤", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "بهسي", + "expectation": "twodotsverticalbelow-ar=2@339,-337+0|seen_alefMaksura-ar.fina=2+343|heh-ar.medi=1@-26,0+328|dotbelow-ar=0@72,-46+0|behDotless-ar.init.med=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝١٨٥", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar.05=0+400", - "RaqqSura.ttf": "endofayah-ar.05=0+400" + "only": "RaqqSura.ttf", + "input": "بهمن", + "expectation": "dotabove-ar=3@-3,90+0|noonghunna-ar.fina=3+250|meem-ar.medi.round3=2+398|heh-ar.medi.round=1+320|dotbelow-ar=0@72,-46+0|behDotless-ar.init.med=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝١٨٦", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "بيبن", + "expectation": "dotabove-ar=3@-3,90+0|noonghunna-ar.fina=3+250|dotbelow-ar=2@50,-110+0|behDotless-ar.medi.round=2@-6,0+104|twodotsverticalbelow-ar=1@-13,-137+0|behDotless-ar.medi.high=1+100|dotbelow-ar=0@72,-46+0|behDotless-ar.init=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝١٨٧", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "بُمل", + "expectation": "lam-ar.fina=3+177|meem-ar.medi=2@-28,0+352|damma-ar=0@-85,98+0|dotbelow-ar=0@72,-46+0|behDotless-ar.init=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝١٨٨", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "تتتا", + "expectation": "alef-ar.fina=3+90|twodotsverticalabove-ar.vert.beh=2@-18,301+0|behDotless-ar.medi=2+100|twodotsverticalabove-ar.beh=1@-45,390+0|behDotless-ar.medi.high=1+100|twodotsverticalabove-ar=0@-50,305+0|behDotless-ar.init=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝١٨٩", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "تعبا", + "expectation": "alef-ar.fina=3+90|dotbelow-ar=2@-19,-110+0|behDotless-ar.medi=2+100|ain-ar.medi=1+202|twodotsverticalabove-ar.beh=0@-45,388+0|behDotless-ar.init.high=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝١٩٠", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar.10=0+1117|ayah.190=1+0", - "RaqqSura.ttf": "endofayah-ar.10=0+1117|ayah.190=1+0" + "only": "RaqqSura.ttf", + "input": "تعبت", + "expectation": "twodotsverticalabove-ar=3@803,264+0|behDotless-ar.fina=3+984|dotbelow-ar=2@-13,-110+0|behDotless-ar.medi.high=2+100|ain-ar.medi=1+202|twodotsverticalabove-ar.beh=0@-45,388+0|behDotless-ar.init.high=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝١٩١", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "تعبه", + "expectation": "heh-ar.fina=3+336|dotbelow-ar=2@-13,-110+0|behDotless-ar.medi.med=2+100|ain-ar.medi=1+202|twodotsverticalabove-ar.beh=0@-45,388+0|behDotless-ar.init.high=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝١٩٢", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "تعلم", + "expectation": "meem-ar.fina.round=3+554|lam-ar.medi.round=2+95|ain-ar.medi=1+202|twodotsverticalabove-ar.beh=0@-45,388+0|behDotless-ar.init.high=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝١٩٣", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "تعلو", + "expectation": "waw-ar.fina=3+477|lam-ar.medi=2@-10,0+90|ain-ar.medi=1+202|twodotsverticalabove-ar.beh=0@-45,388+0|behDotless-ar.init.high=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝١٩٤", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "تغنم", + "expectation": "meem-ar.fina.round=3+554|dotabove-ar.beh=2@-11,297+0|behDotless-ar.medi.round=2@-6,0+104|dotabove-ar=1@-74,223+0|ain-ar.medi=1+202|twodotsverticalabove-ar.beh=0@-45,388+0|behDotless-ar.init.high=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝١٩٥", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar.05=0+400", - "RaqqSura.ttf": "endofayah-ar.05=0+400" + "only": "RaqqSura.ttf", + "input": "ثثثا", + "expectation": "alef-ar.fina=3+90|threedotsupabove-ar.vert.beh=2@-18,301+0|behDotless-ar.medi=2+100|threedotsupabove-ar.beh=1@-75,390+0|behDotless-ar.medi.high=1+100|threedotsupabove-ar=0@-84,305+0|behDotless-ar.init=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝١٩٦", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "جججج", + "expectation": "dotbelow-ar=3@571,-122+0|hah-ar.fina=3+417|dotbelow-ar=2@401,-25+0|hah-ar.medi.hah=2@0,115+109|dotbelow-ar=1@401,97+0|hah-ar.medi.hah=1@0,237+109|dotbelow-ar=0@400,220+0|hah-ar.init.hah=0@0,359+579", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝١٩٧", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "جلحو", + "expectation": "waw-ar.fina=3+477|hah-ar.medi=2+133|lam-ar.medi.hah1=1@0,7+125|dotbelow-ar=0@213,10+0|hah-ar.init=0@0,122+703", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝١٩٨", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "حالت", + "expectation": "twodotsverticalabove-ar=3@803,264+0|behDotless-ar.fina=3+984|lam-ar.init.short=2+100|alef-ar.fina.lam=1+90|hah-ar.init=0+703", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝١٩٩", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "ريحا", + "expectation": "alef-ar.fina=3+90|hah-ar.medi.alt=2+135|twodotsverticalbelow-ar=1@167,158+0|behDotless-ar.init.hah=1@63,5+572|reh-ar=0+453", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٢٠٠", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar.10=0+1117|ayah.200=1+0", - "RaqqSura.ttf": "endofayah-ar.10=0+1117|ayah.200=1+0" + "only": "RaqqSura.ttf", + "input": "سبإٍ", + "expectation": "kasratan-ar=2@-85,-131+0|alef-ar.fina=2+90|dotbelow-ar=1@-19,-110+0|behDotless-ar.medi=1+100|seen-ar.init=0+345", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٢٠١", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "سببا", + "expectation": "alef-ar.fina=3+90|dotbelow-ar=2@-19,-110+0|behDotless-ar.medi=2+100|dotbelow-ar=1@-13,-110+0|behDotless-ar.medi.high=1+100|seen-ar.init=0+345", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٢٠٢", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "سبيل", + "expectation": "lam-ar.fina=3+177|twodotsverticalbelow-ar=2@-19,-137+0|behDotless-ar.medi=2+100|dotbelow-ar=1@-13,-110+0|behDotless-ar.medi.high=1+100|seen-ar.init=0+345", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٢٠٣", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "سحيق", + "expectation": "twodotsverticalabove-ar=3@-62,265+0|qafDotless-ar.fina=3+373|twodotsverticalbelow-ar=2@131,-137+0|behDotless-ar.medi=2+100|hah-ar.medi=1+133|seen-ar.init=0@0,122+465", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٢٠٤", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "سوءِ", + "expectation": "kasra-ar=2@191,-246+0|waw-ar.fina=1+477|seen-ar.init=0+345", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٢٠٥", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar.05=0+400", - "RaqqSura.ttf": "endofayah-ar.05=0+400" + "only": "RaqqSura.ttf", + "input": "سِيء", + "expectation": "hamza-ar=3+0|twodotsverticalbelow-ar=0@330,-337+0|kasra-ar=0@217,-101+0|seen_alefMaksura-ar=0+346", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٢٠٦", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "صــا", + "expectation": "alef-ar.fina.kashida=3+198|kashida-ar=2+100|kashida-ar=1+100|sad-ar.init=0+765", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٢٠٧", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "طارق", + "expectation": "twodotsverticalabove-ar=3@-70,279+0|qafDotless-ar=3+469|reh-ar=2@-30,0+423|alef-ar.fina.short=1+102|tah-ar.init=0+765", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٢٠٨", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "طريق", + "expectation": "twodotsverticalabove-ar=3@-62,265+0|qafDotless-ar.fina=3+373|twodotsverticalbelow-ar=2@72,-73+0|behDotless-ar.init=2+100|reh-ar.fina=1@-95,0+292|tah-ar.init=0+765", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٢٠٩", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "عليم", + "expectation": "meem-ar.fina.round=3+554|twodotsverticalbelow-ar=2@-20,-137+0|behDotless-ar.medi.round=2@-6,0+104|lam-ar.medi=1+100|ain-ar.init=0+680", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٢١٠", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar.10=0+1117|ayah.210=1+0", - "RaqqSura.ttf": "endofayah-ar.10=0+1117|ayah.210=1+0" + "only": "RaqqSura.ttf", + "input": "علِي", + "expectation": "twodotsverticalbelow-ar=1@311,-329+0|kasra-ar=1@-19,-132+0|lam_alefMaksura-ar.fina=1+110|ain-ar.init=0+680", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٢١١", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "عيسى", + "expectation": "seen_alefMaksura-ar.fina=2+343|twodotsverticalbelow-ar=1@-13,-137+0|behDotless-ar.medi.high=1+100|ain-ar.init=0+680", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٢١٢", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "فبيا", + "expectation": "alef-ar.fina=3+90|twodotsverticalbelow-ar=2@-19,-137+0|behDotless-ar.medi=2+100|dotbelow-ar=1@-13,-110+0|behDotless-ar.medi.high=1+100|dotabove-ar=0@-61,373+0|fehDotless-ar.init=0+334", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٢١٣", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "فلاُ", + "expectation": "damma-ar=1@-83,-14+0|lam_alef-ar.fina=1+522|dotabove-ar=0@-91,373+0|fehDotless-ar.init=0@-30,0+304", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٢١٤", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "فلِي", + "expectation": "twodotsverticalbelow-ar=1@311,-329+0|kasra-ar=1@-19,-132+0|lam_alefMaksura-ar.fina=1+110|dotabove-ar=0@-61,373+0|fehDotless-ar.init=0+334", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٢١٥", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar.05=0+400", - "RaqqSura.ttf": "endofayah-ar.05=0+400" + "only": "RaqqSura.ttf", + "input": "قالت", + "expectation": "twodotsverticalabove-ar=3@803,264+0|behDotless-ar.fina=3+984|lam-ar.init.short=2+100|twodotsverticalabove-ar=0@115,402+0|fehDotless_alef-ar=0@-8,0+552", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٢١٦", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "قلنا", + "expectation": "alef-ar.fina=3+90|dotabove-ar.beh=2@-15,297+0|behDotless-ar.medi=2+100|lam-ar.medi=1+100|twodotsverticalabove-ar=0@-91,381+0|fehDotless-ar.init=0+334", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٢١٧", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "كلمة", + "expectation": "twodotsverticalabove-ar=3@186,388+0|heh-ar.fina=3+336|meem-ar.medi.round=2+425|lam-ar.medi.round=1+95|kaf-ar.init=0@-5,0+760", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٢١٨", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "لبشر", + "expectation": "reh-ar.fina=3+387|threedotshorizontalabove-ar.1=2@-9,171+0|seen-ar.medi=2+345|dotbelow-ar=1@-13,-110+0|behDotless-ar.medi.high=1+100|lam-ar.init=0+123", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٢١٩", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "لحلا", + "expectation": "lam_alef-ar.fina=2+522|hah-ar.medi.alt=1@-57,0+78|lam-ar.init.hah1.alt=0@63,5+578", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٢٢٠", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar.10=0+1117|ayah.220=1+0", - "RaqqSura.ttf": "endofayah-ar.10=0+1117|ayah.220=1+0" + "only": "RaqqSura.ttf", + "input": "لسبا", + "expectation": "alef-ar.fina=3+90|dotbelow-ar=2@-19,-110+0|behDotless-ar.medi=2+100|seen-ar.medi=1+345|lam-ar.init=0+123", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٢٢١", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "لسبب", + "expectation": "dotbelow-ar=3@834,-111+0|behDotless-ar.fina=3+984|dotbelow-ar=2@-13,-110+0|behDotless-ar.medi.high=2+100|seen-ar.medi=1+345|lam-ar.init=0+123", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٢٢٢", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "لسبه", + "expectation": "heh-ar.fina=3+336|dotbelow-ar=2@-13,-110+0|behDotless-ar.medi.med=2+100|seen-ar.medi=1+345|lam-ar.init=0+123", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٢٢٣", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "لسسا", + "expectation": "alef-ar.fina=3+90|seen-ar.medi=2+345|seen-ar.medi=1+345|lam-ar.init=0+123", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٢٢٤", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "لسسي", + "expectation": "twodotsverticalbelow-ar=2@339,-337+0|seen_alefMaksura-ar.fina=2+343|seen-ar.medi=1+345|lam-ar.init=0+123", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٢٢٥", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar.05=0+400", - "RaqqSura.ttf": "endofayah-ar.05=0+400" + "only": "RaqqSura.ttf", + "input": "لسضا", + "expectation": "alef-ar.fina=3+90|dotabove-ar=2@310,247+0|sad-ar.medi=2+758|seen-ar.medi=1@-15,0+330|lam-ar.init=0+123", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٢٢٦", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "لسطا", + "expectation": "alef-ar.fina.short=3+102|tah-ar.medi=2+758|seen-ar.medi=1@-15,0+330|lam-ar.init=0+123", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٢٢٧", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "لسعا", + "expectation": "alef-ar.fina=3+90|ain-ar.medi=2+202|seen-ar.medi=1+345|lam-ar.init=0+123", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٢٢٨", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "لسكا", + "expectation": "alef-ar.fina=3+90|kaf-ar.medi=2@-5,0+753|seen-ar.medi=1@-15,0+330|lam-ar.init=0+123", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٢٢٩", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "لسلا", + "expectation": "lam_alef-ar.fina=2+522|seen-ar.medi=1+345|lam-ar.init=0+123", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٢٣٠", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar.10=0+1117|ayah.230=1+0", - "RaqqSura.ttf": "endofayah-ar.10=0+1117|ayah.230=1+0" + "only": "RaqqSura.ttf", + "input": "لسلن", + "expectation": "dotabove-ar=3@-3,90+0|noonghunna-ar.fina=3+250|lam-ar.medi.round=2+95|seen-ar.medi=1+345|lam-ar.init=0+123", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٢٣١", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "لسما", + "expectation": "alef-ar.fina=3+90|meem-ar.medi=2@-28,0+352|seen-ar.medi=1+345|lam-ar.init=0+123", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٢٣٢", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "لسمم", + "expectation": "meem-ar.fina.round=3+554|meem-ar.medi.round2=2+398|seen-ar.medi=1+345|lam-ar.init=0+123", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٢٣٣", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "لسها", + "expectation": "alef-ar.fina=3+90|heh-ar.medi=2@-26,0+328|seen-ar.medi=1+345|lam-ar.init=0+123", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٢٣٤", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "لسهم", + "expectation": "meem-ar.fina.round=3+554|heh-ar.medi.round=2+320|seen-ar.medi=1+345|lam-ar.init=0+123", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٢٣٥", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar.05=0+400", - "RaqqSura.ttf": "endofayah-ar.05=0+400" + "only": "RaqqSura.ttf", + "input": "لسيم", + "expectation": "meem-ar.fina.round=3+554|twodotsverticalbelow-ar=2@-20,-137+0|behDotless-ar.medi.round=2@-6,0+104|seen-ar.medi=1+345|lam-ar.init=0+123", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٢٣٦", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "لمحا", + "expectation": "alef-ar.fina=3+90|hah-ar.medi=2+133|meem-ar.medi=1@-28,122+352|lam-ar.init.hah1=0@0,7+123", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٢٣٧", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "لممح", + "expectation": "hah-ar.fina=3+417|meem-ar.medi.round=2@0,115+425|meem-ar.medi.round2=1@0,115+398|lam-ar.init.hah1=0@-22,0+101", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٢٣٨", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "لمهم", + "expectation": "meem-ar.fina.round=3+554|heh-ar.medi.round=2+320|meem-ar.medi=1@-28,0+352|lam-ar.init=0+123", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٢٣٩", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "مذهل", + "expectation": "lam-ar.fina=3+177|heh-ar.init=2@-26,0+335|dotabove-ar=1@420,249+0|dal-ar.fina=1+875|meem-ar.init=0+425", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٢٤٠", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar.10=0+1117|ayah.240=1+0", - "RaqqSura.ttf": "endofayah-ar.10=0+1117|ayah.240=1+0" + "only": "RaqqSura.ttf", + "input": "مفصح", + "expectation": "hah-ar.fina=3+417|sad-ar.medi=2@0,115+758|dotabove-ar=1@1,444+0|fehDotless-ar.medi=1@0,115+377|meem-ar.init=0@0,115+425", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٢٤١", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "ممسي", + "expectation": "twodotsverticalbelow-ar=2@339,-337+0|seen_alefMaksura-ar.fina=2+343|meem-ar.medi.round=1+425|meem-ar.init.round=0+398", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٢٤٢", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "ممما", + "expectation": "alef-ar.fina=3+90|meem-ar.medi.round=2+425|meem-ar.medi.round3=1+398|meem-ar.init.round=0+398", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٢٤٣", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "منهم", + "expectation": "meem-ar.fina.round=3+554|heh-ar.medi.round=2+320|dotabove-ar.beh=1@-15,336+0|behDotless-ar.medi.med=1+100|meem-ar.init=0+425", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٢٤٤", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "منين", + "expectation": "dotabove-ar=3@-3,90+0|noonghunna-ar.fina=3+250|twodotsverticalbelow-ar=2@50,-137+0|behDotless-ar.medi.round=2@-6,0+104|dotabove-ar.beh=1@-15,382+0|behDotless-ar.medi.high=1+100|meem-ar.init=0+425", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٢٤٥", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar.05=0+400", - "RaqqSura.ttf": "endofayah-ar.05=0+400" + "only": "RaqqSura.ttf", + "input": "نسبا", + "expectation": "alef-ar.fina=3+90|dotbelow-ar=2@-19,-110+0|behDotless-ar.medi=2+100|seen-ar.medi=1+345|dotabove-ar.beh=0@-15,380+0|behDotless-ar.init.high=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٢٤٦", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "نسبب", + "expectation": "dotbelow-ar=3@834,-111+0|behDotless-ar.fina=3+984|dotbelow-ar=2@-13,-110+0|behDotless-ar.medi.high=2+100|seen-ar.medi=1+345|dotabove-ar.beh=0@-15,380+0|behDotless-ar.init.high=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٢٤٧", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "نسسا", + "expectation": "alef-ar.fina=3+90|seen-ar.medi=2+345|seen-ar.medi=1+345|dotabove-ar.beh=0@-15,380+0|behDotless-ar.init.high=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٢٤٨", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "نسضا", + "expectation": "alef-ar.fina=3+90|dotabove-ar=2@310,247+0|sad-ar.medi=2+758|seen-ar.medi=1@-15,0+330|dotabove-ar.beh=0@-15,380+0|behDotless-ar.init.high=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٢٤٩", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "نسطا", + "expectation": "alef-ar.fina.short=3+102|tah-ar.medi=2+758|seen-ar.medi=1@-15,0+330|dotabove-ar.beh=0@-15,380+0|behDotless-ar.init.high=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٢٥٠", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar.10=0+1117|ayah.250=1+0", - "RaqqSura.ttf": "endofayah-ar.10=0+1117|ayah.250=1+0" + "only": "RaqqSura.ttf", + "input": "نسعا", + "expectation": "alef-ar.fina=3+90|ain-ar.medi=2+202|seen-ar.medi=1+345|dotabove-ar.beh=0@-15,380+0|behDotless-ar.init.high=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٢٥١", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "نسكا", + "expectation": "alef-ar.fina=3+90|kaf-ar.medi=2@-5,0+753|seen-ar.medi=1@-15,0+330|dotabove-ar.beh=0@-15,380+0|behDotless-ar.init.high=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٢٥٢", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "نسلا", + "expectation": "lam_alef-ar.fina=2+522|seen-ar.medi=1+345|dotabove-ar.beh=0@-15,380+0|behDotless-ar.init.high=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٢٥٣", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "نسلن", + "expectation": "dotabove-ar=3@-3,90+0|noonghunna-ar.fina=3+250|lam-ar.medi.round=2+95|seen-ar.medi=1+345|dotabove-ar.beh=0@-15,380+0|behDotless-ar.init.high=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٢٥٤", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "نسما", + "expectation": "alef-ar.fina=3+90|meem-ar.medi=2@-28,0+352|seen-ar.medi=1+345|dotabove-ar.beh=0@-15,380+0|behDotless-ar.init.high=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٢٥٥", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar.05=0+400", - "RaqqSura.ttf": "endofayah-ar.05=0+400" + "only": "RaqqSura.ttf", + "input": "نسمم", + "expectation": "meem-ar.fina.round=3+554|meem-ar.medi.round2=2+398|seen-ar.medi=1+345|dotabove-ar.beh=0@-15,380+0|behDotless-ar.init.high=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٢٥٦", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "نسها", + "expectation": "alef-ar.fina=3+90|heh-ar.medi=2@-26,0+328|seen-ar.medi=1+345|dotabove-ar.beh=0@-15,380+0|behDotless-ar.init.high=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٢٥٧", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "نسهم", + "expectation": "meem-ar.fina.round=3+554|heh-ar.medi.round=2+320|seen-ar.medi=1+345|dotabove-ar.beh=0@-15,380+0|behDotless-ar.init.high=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٢٥٨", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "نسيم", + "expectation": "meem-ar.fina.round=3+554|twodotsverticalbelow-ar=2@-20,-137+0|behDotless-ar.medi.round=2@-6,0+104|seen-ar.medi=1+345|dotabove-ar.beh=0@-15,380+0|behDotless-ar.init.high=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٢٥٩", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "نعبا", + "expectation": "alef-ar.fina=3+90|dotbelow-ar=2@-19,-110+0|behDotless-ar.medi=2+100|ain-ar.medi=1+202|dotabove-ar.beh=0@-15,380+0|behDotless-ar.init.high=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٢٦٠", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar.10=0+1117|ayah.260=1+0", - "RaqqSura.ttf": "endofayah-ar.10=0+1117|ayah.260=1+0" + "only": "RaqqSura.ttf", + "input": "نعبب", + "expectation": "dotbelow-ar=3@834,-111+0|behDotless-ar.fina=3+984|dotbelow-ar=2@-13,-110+0|behDotless-ar.medi.high=2+100|ain-ar.medi=1+202|dotabove-ar.beh=0@-15,380+0|behDotless-ar.init.high=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٢٦١", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "نعسا", + "expectation": "alef-ar.fina=3+90|seen-ar.medi=2+345|ain-ar.medi=1+202|dotabove-ar.beh=0@-15,380+0|behDotless-ar.init.high=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٢٦٢", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "نعضا", + "expectation": "alef-ar.fina=3+90|dotabove-ar=2@310,247+0|sad-ar.medi=2+758|ain-ar.medi=1+202|dotabove-ar.beh=0@-15,380+0|behDotless-ar.init.high=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٢٦٣", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "نعطا", + "expectation": "alef-ar.fina.short=3+102|tah-ar.medi=2+758|ain-ar.medi=1+202|dotabove-ar.beh=0@-15,380+0|behDotless-ar.init.high=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٢٦٤", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "نععا", + "expectation": "alef-ar.fina=3+90|ain-ar.medi=2+202|ain-ar.medi=1+202|dotabove-ar.beh=0@-15,380+0|behDotless-ar.init.high=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٢٦٥", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar.05=0+400", - "RaqqSura.ttf": "endofayah-ar.05=0+400" + "only": "RaqqSura.ttf", + "input": "نعكا", + "expectation": "alef-ar.fina=3+90|kaf-ar.medi=2@-5,0+753|ain-ar.medi=1+202|dotabove-ar.beh=0@-15,380+0|behDotless-ar.init.high=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٢٦٦", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "نعلا", + "expectation": "lam_alef-ar.fina=2+522|ain-ar.medi=1@-21,0+181|dotabove-ar.beh=0@-15,380+0|behDotless-ar.init.high=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٢٦٧", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "نعلن", + "expectation": "dotabove-ar=3@-3,90+0|noonghunna-ar.fina=3+250|lam-ar.medi.round=2+95|ain-ar.medi=1+202|dotabove-ar.beh=0@-15,380+0|behDotless-ar.init.high=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٢٦٨", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "نعما", + "expectation": "alef-ar.fina=3+90|meem-ar.medi=2@-28,0+352|ain-ar.medi=1+202|dotabove-ar.beh=0@-15,380+0|behDotless-ar.init.high=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٢٦٩", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "نعمم", + "expectation": "meem-ar.fina.round=3+554|meem-ar.medi.round2=2+398|ain-ar.medi=1+202|dotabove-ar.beh=0@-15,380+0|behDotless-ar.init.high=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٢٧٠", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar.10=0+1117|ayah.270=1+0", - "RaqqSura.ttf": "endofayah-ar.10=0+1117|ayah.270=1+0" + "only": "RaqqSura.ttf", + "input": "نعها", + "expectation": "alef-ar.fina=3+90|heh-ar.medi=2@-26,0+328|ain-ar.medi=1+202|dotabove-ar.beh=0@-15,380+0|behDotless-ar.init.high=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٢٧١", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "نعهم", + "expectation": "meem-ar.fina.round=3+554|heh-ar.medi.round=2+320|ain-ar.medi=1+202|dotabove-ar.beh=0@-15,380+0|behDotless-ar.init.high=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٢٧٢", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "نعيم", + "expectation": "meem-ar.fina.round=3+554|twodotsverticalbelow-ar=2@-20,-137+0|behDotless-ar.medi.round=2@-6,0+104|ain-ar.medi=1+202|dotabove-ar.beh=0@-15,380+0|behDotless-ar.init.high=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٢٧٣", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "نــا", + "expectation": "alef-ar.fina.kashida=3+198|kashida-ar=2+100|kashida-ar=1+100|dotabove-ar=0@-20,297+0|behDotless-ar.init=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٢٧٤", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "نفبا", + "expectation": "alef-ar.fina=3+90|dotbelow-ar=2@-19,-110+0|behDotless-ar.medi=2+100|dotabove-ar=1@1,329+0|fehDotless-ar.medi=1+377|dotabove-ar=0@-20,297+0|behDotless-ar.init=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٢٧٥", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar.05=0+400", - "RaqqSura.ttf": "endofayah-ar.05=0+400" + "only": "RaqqSura.ttf", + "input": "نفبب", + "expectation": "dotbelow-ar=3@834,-111+0|behDotless-ar.fina=3+984|dotbelow-ar=2@-13,-110+0|behDotless-ar.medi.high=2+100|dotabove-ar=1@1,329+0|fehDotless-ar.medi=1+377|dotabove-ar=0@-20,297+0|behDotless-ar.init=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٢٧٦", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "نفسا", + "expectation": "alef-ar.fina=3+90|seen-ar.medi=2+345|dotabove-ar=1@1,329+0|fehDotless-ar.medi=1+377|dotabove-ar=0@-20,297+0|behDotless-ar.init=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٢٧٧", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "نفضا", + "expectation": "alef-ar.fina=3+90|dotabove-ar=2@310,247+0|sad-ar.medi=2+758|dotabove-ar=1@1,329+0|fehDotless-ar.medi=1+377|dotabove-ar=0@-20,297+0|behDotless-ar.init=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٢٧٨", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "نفطا", + "expectation": "alef-ar.fina.short=3+102|tah-ar.medi=2+758|dotabove-ar=1@1,329+0|fehDotless-ar.medi=1+377|dotabove-ar=0@-20,297+0|behDotless-ar.init=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٢٧٩", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "نفعا", + "expectation": "alef-ar.fina=3+90|ain-ar.medi=2+202|dotabove-ar=1@1,329+0|fehDotless-ar.medi=1+377|dotabove-ar=0@-20,297+0|behDotless-ar.init=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٢٨٠", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar.10=0+1117|ayah.280=1+0", - "RaqqSura.ttf": "endofayah-ar.10=0+1117|ayah.280=1+0" + "only": "RaqqSura.ttf", + "input": "نفكا", + "expectation": "alef-ar.fina=3+90|kaf-ar.medi=2@-5,0+753|dotabove-ar=1@1,329+0|fehDotless-ar.medi=1+377|dotabove-ar=0@-20,297+0|behDotless-ar.init=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٢٨١", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "نفلا", + "expectation": "lam_alef-ar.fina=2+522|dotabove-ar=1@-41,329+0|fehDotless-ar.medi=1@-42,0+335|dotabove-ar=0@-20,297+0|behDotless-ar.init=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٢٨٢", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "نفلن", + "expectation": "dotabove-ar=3@-3,90+0|noonghunna-ar.fina=3+250|lam-ar.medi.round=2+95|dotabove-ar=1@1,329+0|fehDotless-ar.medi=1+377|dotabove-ar=0@-20,297+0|behDotless-ar.init=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٢٨٣", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "نفما", + "expectation": "alef-ar.fina=3+90|meem-ar.medi=2@-28,0+352|dotabove-ar=1@1,329+0|fehDotless-ar.medi=1+377|dotabove-ar=0@-20,297+0|behDotless-ar.init=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٢٨٤", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "نفمم", + "expectation": "meem-ar.fina.round=3+554|meem-ar.medi.round2=2+398|dotabove-ar=1@1,329+0|fehDotless-ar.medi=1+377|dotabove-ar=0@-20,297+0|behDotless-ar.init=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٢٨٥", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar.05=0+400", - "RaqqSura.ttf": "endofayah-ar.05=0+400" + "only": "RaqqSura.ttf", + "input": "نفها", + "expectation": "alef-ar.fina=3+90|heh-ar.medi=2@-26,0+328|dotabove-ar=1@1,329+0|fehDotless-ar.medi=1+377|dotabove-ar=0@-20,297+0|behDotless-ar.init=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٢٨٦", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "نفهم", + "expectation": "meem-ar.fina.round=3+554|heh-ar.medi.round=2+320|dotabove-ar=1@1,329+0|fehDotless-ar.medi=1+377|dotabove-ar=0@-20,297+0|behDotless-ar.init=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٢٨٧", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "نقيم", + "expectation": "meem-ar.fina.round=3+554|twodotsverticalbelow-ar=2@-20,-137+0|behDotless-ar.medi.round=2@-6,0+104|twodotsverticalabove-ar=1@-29,337+0|fehDotless-ar.medi=1+377|dotabove-ar=0@-20,297+0|behDotless-ar.init=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٢٨٨", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "نننا", + "expectation": "alef-ar.fina=3+90|dotabove-ar.beh=2@-15,297+0|behDotless-ar.medi=2+100|dotabove-ar.beh=1@-15,382+0|behDotless-ar.medi.high=1+100|dotabove-ar=0@-20,297+0|behDotless-ar.init=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٢٨٩", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "هالخ", + "expectation": "dotabove-ar=3@256,188+0|hah-ar.fina.alt=3+407|lam-ar.init.hah1.alt=2@63,0+578|alef-ar.fina=1+90|heh-ar.init=0@-26,0+335", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٢٩٠", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "وبخا", + "expectation": "alef-ar.fina=3+90|dotabove-ar=2@-22,198+0|hah-ar.medi.alt=2+135|dotbelow-ar=1@167,185+0|behDotless-ar.init.hah=1@63,5+572|waw-ar=0+516", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٢٩١", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "ولجا", + "expectation": "alef-ar.fina=3+90|dotbelow-ar=2@213,-112+0|hah-ar.medi.alt=2+135|lam-ar.init.hah1.alt=1@63,5+578|waw-ar=0+516", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٢٩٢", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "يتخذ", + "expectation": "dotabove-ar=3@420,249+0|dal-ar.fina=3+875|dotabove-ar=2@-33,220+0|hah-ar.medi=2+133|twodotsverticalabove-ar.beh=1@-45,427+0|behDotless-ar.medi=1@0,122+100|twodotsverticalbelow-ar=0@51,49+0|behDotless-ar.init.high=0@0,122+360", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٢٩٣", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "يجبي", + "expectation": "twodotsverticalbelow-ar=2@311,-329+0|dotbelow-ar=2@-14,-110+0|behDotless_alefMaksura-ar.fina=2+110|dotbelow-ar=1@213,-112+0|hah-ar.medi.alt=1+135|twodotsverticalbelow-ar=0@167,158+0|behDotless-ar.init.hah=0@63,5+572", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٢٩٤", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "يحيي", + "expectation": "twodotsverticalbelow-ar=2@311,-329+0|twodotsverticalbelow-ar=2@-14,-137+0|behDotless_alefMaksura-ar.fina=2+110|hah-ar.medi.alt=1+135|twodotsverticalbelow-ar=0@167,158+0|behDotless-ar.init.hah=0@63,5+572", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٢٩٥", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar.05=0+400", - "RaqqSura.ttf": "endofayah-ar.05=0+400" + "only": "RaqqSura.ttf", + "input": "يشعر", + "expectation": "reh-ar.fina=3+387|ain-ar.medi=2+202|threedotshorizontalabove-ar.1=1@-9,171+0|seen-ar.medi=1+345|twodotsverticalbelow-ar=0@51,-73+0|behDotless-ar.init.high=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٢٩٦", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "يلجل", + "expectation": "lam-ar.fina=3+177|dotbelow-ar=2@213,-112+0|hah-ar.medi=2+133|lam-ar.medi.hah1=1@0,7+125|twodotsverticalbelow-ar=0@72,49+0|behDotless-ar.init=0@0,122+360", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٢٩٧", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "يلمح", + "expectation": "hah-ar.fina=3+417|meem-ar.medi.round=2@0,115+425|lam-ar.medi.hah1.round=1+94|twodotsverticalbelow-ar=0@72,42+0|behDotless-ar.init=0@0,115+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٢٩٨", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "يمما", + "expectation": "alef-ar.fina=3+90|meem-ar.medi.round=2+425|meem-ar.medi.round2=1+398|twodotsverticalbelow-ar=0@72,-73+0|behDotless-ar.init=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٢٩٩", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "يممر", + "expectation": "reh-ar.fina=3+387|meem-ar.medi.round3=2@20,0+418|meem-ar.medi.round2=1+398|twodotsverticalbelow-ar=0@72,-73+0|behDotless-ar.init=0+100", + "variations": { + "MSHQ": 10.0 } }, { - "input": "۝٣٠٠", - "direction": "ltr", - "expectation": { - "default": "endofayah-ar=0+400", - "RaqqSura.ttf": "endofayah-ar=0+400" + "only": "RaqqSura.ttf", + "input": "يممو", + "expectation": "waw-ar.fina.round=3+492|meem-ar.medi.round3=2+398|meem-ar.medi.round2=1+398|twodotsverticalbelow-ar=0@72,-73+0|behDotless-ar.init=0+100", + "variations": { + "MSHQ": 10.0 } }, { + "only": "RaqqSura.ttf", "input": "ءَامن", - "expectation": { - "default": "dotabove-ar=4@-3,101+0|noonghunna-ar.fina=4+250|meem-ar.init.round=3+398|madda-ar=2@241,551+0|alef-ar=2@379,0+1037|hamza_fatha-ar=0+0", - "RaqqSura.ttf": "dotabove-ar=4@-3,90+0|noonghunna-ar.fina=4+250|meem-ar.init.round=3+398|madda-ar=2@-158,551+0|alef-ar=2@-21,0+621|hamza_fatha-ar=0+0" + "expectation": "dotabove-ar=4@-3,90+0|noonghunna-ar.fina=4+250|meem-ar.init.round=3+398|madda-ar=2@-158,551+0|alef-ar=2@-21,0+621|hamza_fatha-ar=0+0", + "variations": { + "MSHQ": 10.0 } }, { + "only": "RaqqSura.ttf", "input": "أضاءَ", - "expectation": { - "default": "madda-ar=3@-151,560+0|alef-ar.fina=2+101|dotabove-ar=1@310,247+0|_c.seen.beh=1+0|sad-ar.init=1+765|fatha-ar=0@437,547+0|alef-ar=0@365,0+1023", - "RaqqSura.ttf": "madda-ar=3@-161,560+0|alef-ar.fina=2+90|dotabove-ar=1@310,247+0|sad-ar.init=1+765|fatha-ar=0@38,547+0|alef-ar=0@-35,0+607" + "expectation": "madda-ar=3@-161,560+0|alef-ar.fina=2+90|dotabove-ar=1@310,247+0|sad-ar.init=1+765|fatha-ar=0@38,547+0|alef-ar=0@-35,0+607", + "variations": { + "MSHQ": 10.0 } }, { + "only": "RaqqSura.ttf", "input": "أيلمح", - "expectation": { - "default": "hah-ar.fina=4+417|meem-ar.medi.round=3@0,115+425|lam-ar.medi.hah1.round=2+94|twodotsverticalbelow-ar=1@72,42+0|_c.seen.beh=1@0,115+0|behDotless-ar.init=1@0,115+130|fatha-ar=0@462,547+0|alef-ar=0@390,0+1048", - "RaqqSura.ttf": "hah-ar.fina=4+417|meem-ar.medi.round=3@0,115+425|lam-ar.medi.hah1.round=2+94|twodotsverticalbelow-ar=1@72,42+0|behDotless-ar.init=1@0,115+100|fatha-ar=0@73,547+0|alef-ar=0+642" + "expectation": "hah-ar.fina=4+417|meem-ar.medi.round=3@0,115+425|lam-ar.medi.hah1.round=2+94|twodotsverticalbelow-ar=1@72,42+0|behDotless-ar.init=1@0,115+100|fatha-ar=0@73,547+0|alef-ar=0+642", + "variations": { + "MSHQ": 10.0 } }, { + "only": "RaqqSura.ttf", "input": "اتبعو", - "expectation": { - "default": "waw-ar.fina.round=4+492|_c.ain.meem=3@-7,0+28|ain-ar.medi=3+220|dotbelow-ar=2@9,-110+0|_c.seen.beh=2+0|behDotless-ar.medi=2+128|twodotsverticalabove-ar.beh=1@-39,400+0|_c.seen.beh=1+0|behDotless-ar.init.high=1+130|alef-ar=0@390,0+1048", - "RaqqSura.ttf": "waw-ar.fina=4+477|ain-ar.medi=3+202|dotbelow-ar=2@-19,-110+0|behDotless-ar.medi=2+100|twodotsverticalabove-ar.beh=1@-45,388+0|behDotless-ar.init.high=1+100|alef-ar=0+642" + "expectation": "waw-ar.fina=4+477|ain-ar.medi=3+202|dotbelow-ar=2@-19,-110+0|behDotless-ar.medi=2+100|twodotsverticalabove-ar.beh=1@-45,388+0|behDotless-ar.init.high=1+100|alef-ar=0+642", + "variations": { + "MSHQ": 10.0 } }, { + "only": "RaqqSura.ttf", "input": "اططحح", - "expectation": { - "default": "hah-ar.fina=4+417|hah-ar.medi.hah=3@0,115+109|tah-ar.medi.hah2=2@0,7+758|tah-ar.init.hah2=1@-9,7+756|alef-ar=0@400,0+1058", - "RaqqSura.ttf": "hah-ar.fina=4+417|hah-ar.medi.hah=3@0,115+109|tah-ar.medi.hah2=2@0,7+758|tah-ar.init.hah2=1@-9,7+756|alef-ar=0+642" + "expectation": "hah-ar.fina=4+417|hah-ar.medi.hah=3@0,115+109|tah-ar.medi.hah2=2@0,7+758|tah-ar.init.hah2=1@-9,7+756|alef-ar=0+642", + "variations": { + "MSHQ": 10.0 } }, { + "only": "RaqqSura.ttf", "input": "اطفيح", - "expectation": { - "default": "hah-ar.fina=4+417|twodotsverticalbelow-ar=3@404,-42+0|behDotless-ar.medi=3@0,115+128|dotabove-ar=2@1,444+0|_c.feh.medi.beh=2@0,115+0|fehDotless-ar.medi=2@0,115+377|_c.seen.beh=1@0,115+0|tah-ar.init.hah1=1+765|alef-ar=0@400,0+1058", - "RaqqSura.ttf": "hah-ar.fina=4+417|twodotsverticalbelow-ar=3@376,-42+0|behDotless-ar.medi=3@0,115+100|dotabove-ar=2@1,444+0|fehDotless-ar.medi=2@0,115+377|tah-ar.init.hah1=1+765|alef-ar=0+642" + "expectation": "hah-ar.fina=4+417|twodotsverticalbelow-ar=3@376,-42+0|behDotless-ar.medi=3@0,115+100|dotabove-ar=2@1,444+0|fehDotless-ar.medi=2@0,115+377|tah-ar.init.hah1=1+765|alef-ar=0+642", + "variations": { + "MSHQ": 10.0 } }, { + "only": "RaqqSura.ttf", "input": "البلح", - "expectation": { - "default": "hah-ar.fina=4+417|lam-ar.medi.hah1=3+125|dotbelow-ar=2@274,-15+0|_c.seen.beh=2@0,115+0|behDotless-ar.medi=2@0,115+128|_c.seen.beh=1@0,115+0|lam-ar.init.hah1=1+203|alef-ar=0@395,0+1053", - "RaqqSura.ttf": "hah-ar.fina=4+417|lam-ar.medi.hah1=3+125|dotbelow-ar=2@-19,5+0|behDotless-ar.medi=2@0,115+100|lam-ar.init.hah1=1+283|alef-ar=0+642" + "expectation": "hah-ar.fina=4+417|lam-ar.medi.hah1=3+125|dotbelow-ar=2@-19,5+0|behDotless-ar.medi=2@0,115+100|lam-ar.init.hah1=1+283|alef-ar=0+642", + "variations": { + "MSHQ": 10.0 } }, { + "only": "RaqqSura.ttf", "input": "الطيح", - "expectation": { - "default": "hah-ar.fina=4+417|twodotsverticalbelow-ar=3@404,-42+0|behDotless-ar.medi=3@0,115+128|_c.seen.beh=2@0,115+0|tah-ar.medi.hah1=2+758|lam-ar.init.hah1=1@-23,0+100|alef-ar=0@395,0+1053", - "RaqqSura.ttf": "hah-ar.fina=4+417|twodotsverticalbelow-ar=3@376,-42+0|behDotless-ar.medi=3@0,115+100|tah-ar.medi.hah1=2+758|lam-ar.init.hah1=1@-23,0+100|alef-ar=0+642" + "expectation": "hah-ar.fina=4+417|twodotsverticalbelow-ar=3@376,-42+0|behDotless-ar.medi=3@0,115+100|tah-ar.medi.hah1=2+758|lam-ar.init.hah1=1@-23,0+100|alef-ar=0+642", + "variations": { + "MSHQ": 10.0 } }, { + "only": "RaqqSura.ttf", "input": "القصص", - "expectation": { - "default": "sad-ar.fina=4+876|sad-ar.medi=3@-9,0+749|twodotsverticalabove-ar=2@-36,337+0|_c.feh.medi.dal=2+71|fehDotless-ar.medi=2@-78,0+299|_c.seen.beh=1+0|lam-ar.init=1+123|alef-ar=0@395,0+1053", - "RaqqSura.ttf": "sad-ar.fina=4+876|sad-ar.medi=3@-9,0+749|twodotsverticalabove-ar=2@-29,337+0|fehDotless-ar.medi=2+377|lam-ar.init.short=1+100|alef-ar.lam=0+642" + "expectation": "sad-ar.fina=4+876|sad-ar.medi=3@-9,0+749|twodotsverticalabove-ar=2@-29,337+0|fehDotless-ar.medi=2+377|lam-ar.init.short=1+100|alef-ar.lam=0+642", + "variations": { + "MSHQ": 10.0 } }, { + "only": "RaqqSura.ttf", "input": "الكتب", - "expectation": { - "default": "dotbelow-ar=4@834,-111+0|behDotless-ar.fina=4+984|twodotsverticalabove-ar.beh=3@-37,393+0|_c.seen.beh=3+0|behDotless-ar.medi.high=3+128|kaf-ar.medi.alt=2@-5,0+753|lam-ar.init=1@-23,0+100|alef-ar=0@395,0+1053", - "RaqqSura.ttf": "dotbelow-ar=4@834,-111+0|behDotless-ar.fina=4+984|twodotsverticalabove-ar.beh=3@-45,390+0|behDotless-ar.medi.high=3+100|kaf-ar.medi=2@-5,0+753|lam-ar.init.short=1@-23,0+77|alef-ar.lam=0+642" + "expectation": "dotbelow-ar=4@834,-111+0|behDotless-ar.fina=4+984|twodotsverticalabove-ar.beh=3@-45,390+0|behDotless-ar.medi.high=3+100|kaf-ar.medi=2@-5,0+753|lam-ar.init.short=1@-23,0+77|alef-ar.lam=0+642", + "variations": { + "MSHQ": 10.0 } }, { + "only": "RaqqSura.ttf", "input": "النبي", - "expectation": { - "default": "twodotsverticalbelow-ar=4@339,-334+0|alefMaksura-ar.fina=4+282|dotbelow-ar=3@79,-110+0|behDotless-ar.medi=3+128|dotabove-ar.beh=2@-7,385+0|_c.seen.beh=2+0|behDotless-ar.medi.high=2+128|_c.seen.beh=1+0|lam-ar.init=1+123|alef-ar=0@395,0+1053", - "RaqqSura.ttf": "twodotsverticalbelow-ar=3@311,-329+0|dotbelow-ar=3@-14,-110+0|behDotless_alefMaksura-ar.fina=3+110|dotabove-ar.beh=2@-15,382+0|behDotless-ar.medi.high=2+100|lam-ar.init.short=1+100|alef-ar.lam=0+642" + "expectation": "twodotsverticalbelow-ar=3@311,-329+0|dotbelow-ar=3@-14,-110+0|behDotless_alefMaksura-ar.fina=3+110|dotabove-ar.beh=2@-15,382+0|behDotless-ar.medi.high=2+100|lam-ar.init.short=1+100|alef-ar.lam=0+642", + "variations": { + "MSHQ": 10.0 } }, { + "only": "RaqqSura.ttf", "input": "ايعنے", - "expectation": { - "default": "yehbarree-ar.fina=4+297|dotabove-ar.beh=3@8,294+0|behDotless-ar.medi=3+128|_c.ain.medi.beh=2+66|ain-ar.medi=2+220|twodotsverticalbelow-ar=1@81,-73+0|_c.seen.beh=1+0|behDotless-ar.init.high=1+360|alef-ar=0@390,0+1048", - "RaqqSura.ttf": "yehbarree-ar.fina=4+297|dotabove-ar.beh=3@-15,297+0|behDotless-ar.medi=3+100|ain-ar.medi=2+202|twodotsverticalbelow-ar=1@51,-73+0|behDotless-ar.init.high=1+460|alef-ar=0+642" + "expectation": "yehbarree-ar.fina=4+297|dotabove-ar.beh=3@-15,297+0|behDotless-ar.medi=3+100|ain-ar.medi=2+202|twodotsverticalbelow-ar=1@51,-73+0|behDotless-ar.init.high=1+460|alef-ar=0+642", + "variations": { + "MSHQ": 10.0 } }, { + "only": "RaqqSura.ttf", "input": "بببسي", - "expectation": { - "default": "twodotsverticalbelow-ar=3@339,-337+0|seen_alefMaksura-ar.fina=3+343|dotbelow-ar=2@14,-110+0|_c.seen.beh=2+0|behDotless-ar.medi.high=2+128|dotbelow-ar=1@9,-110+0|_c.seen.beh=1+0|behDotless-ar.medi=1+128|dotbelow-ar=0@81,-46+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", - "RaqqSura.ttf": "twodotsverticalbelow-ar=3@339,-337+0|seen_alefMaksura-ar.fina=3+343|dotbelow-ar=2@-13,-110+0|behDotless-ar.medi.high=2+100|dotbelow-ar=1@-19,-110+0|behDotless-ar.medi=1+100|dotbelow-ar=0@51,-46+0|behDotless-ar.init.high=0+100" + "expectation": "twodotsverticalbelow-ar=3@339,-337+0|seen_alefMaksura-ar.fina=3+343|dotbelow-ar=2@-13,-110+0|behDotless-ar.medi.high=2+100|dotbelow-ar=1@-19,-110+0|behDotless-ar.medi=1+100|dotbelow-ar=0@51,-46+0|behDotless-ar.init.high=0+100", + "variations": { + "MSHQ": 10.0 } }, { + "only": "RaqqSura.ttf", "input": "بتحية", - "expectation": { - "default": "twodotsverticalabove-ar=4@159,377+0|heh-ar.fina=4+339|twodotsverticalbelow-ar=3@17,-137+0|_c.seen.beh=3+0|behDotless-ar.medi.med=3+128|_c.hah.beh=2+7|hah-ar.medi=2+133|twodotsverticalabove-ar.beh=1@-22,424+0|behDotless-ar.medi=1@0,122+128|dotbelow-ar=0@131,126+0|_c.seen.beh=0@0,122+0|behDotless-ar.init.high=0@0,122+340", - "RaqqSura.ttf": "twodotsverticalabove-ar=4@186,388+0|heh-ar.fina=4+336|twodotsverticalbelow-ar=3@-13,-137+0|behDotless-ar.medi.med=3+100|hah-ar.medi=2+133|twodotsverticalabove-ar.beh=1@-45,427+0|behDotless-ar.medi=1@0,122+100|dotbelow-ar=0@51,76+0|behDotless-ar.init.high=0@0,122+360" + "expectation": "twodotsverticalabove-ar=4@186,388+0|heh-ar.fina=4+336|twodotsverticalbelow-ar=3@-13,-137+0|behDotless-ar.medi.med=3+100|hah-ar.medi=2+133|twodotsverticalabove-ar.beh=1@-45,427+0|behDotless-ar.medi=1@0,122+100|dotbelow-ar=0@51,76+0|behDotless-ar.init.high=0@0,122+360", + "variations": { + "MSHQ": 10.0 } }, { + "only": "RaqqSura.ttf", "input": "بحححا", - "expectation": { - "default": "alef-ar.fina=4+101|_c.hah.beh=3+7|hah-ar.medi=3+133|hah-ar.medi.hah=2@0,122+109|hah-ar.medi.hah.alt=1@0,244+109|dotbelow-ar=0@167,414+0|behDotless-ar.init.hah=0@63,234+572", - "RaqqSura.ttf": "alef-ar.fina=4+90|hah-ar.medi=3+133|hah-ar.medi.hah=2@0,122+109|hah-ar.medi.hah.alt=1@0,244+109|dotbelow-ar=0@167,414+0|behDotless-ar.init.hah=0@63,234+572" + "expectation": "alef-ar.fina=4+90|hah-ar.medi=3+133|hah-ar.medi.hah=2@0,122+109|hah-ar.medi.hah.alt=1@0,244+109|dotbelow-ar=0@167,414+0|behDotless-ar.init.hah=0@63,234+572", + "variations": { + "MSHQ": 10.0 } }, { + "only": "RaqqSura.ttf", "input": "بممما", - "expectation": { - "default": "alef-ar.fina=4+101|_c.seen.beh=3+0|meem-ar.medi.round=3+425|meem-ar.medi.round3=2+398|meem-ar.medi.round2=1+398|dotbelow-ar=0@72,-46+0|behDotless-ar.init=0+130", - "RaqqSura.ttf": "alef-ar.fina=4+90|meem-ar.medi.round=3+425|meem-ar.medi.round3=2+398|meem-ar.medi.round2=1+398|dotbelow-ar=0@72,-46+0|behDotless-ar.init=0+100" + "expectation": "alef-ar.fina=4+90|meem-ar.medi.round=3+425|meem-ar.medi.round3=2+398|meem-ar.medi.round2=1+398|dotbelow-ar=0@72,-46+0|behDotless-ar.init=0+100", + "variations": { + "MSHQ": 10.0 } }, { + "only": "RaqqSura.ttf", "input": "بنيهم", - "expectation": { - "default": "meem-ar.fina.round=4+554|heh-ar.medi.round=3+323|twodotsverticalbelow-ar=2@9,-137+0|_c.seen.beh=2+0|behDotless-ar.medi=2+128|dotabove-ar.beh=1@-7,385+0|_c.seen.beh=1+0|behDotless-ar.medi.high=1+128|dotbelow-ar=0@72,-46+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", - "RaqqSura.ttf": "meem-ar.fina.round=4+554|heh-ar.medi.round=3+320|twodotsverticalbelow-ar=2@-19,-137+0|behDotless-ar.medi=2+100|dotabove-ar.beh=1@-15,382+0|behDotless-ar.medi.high=1+100|dotbelow-ar=0@72,-46+0|behDotless-ar.init=0+100" + "expectation": "meem-ar.fina.round=4+554|heh-ar.medi.round=3+320|twodotsverticalbelow-ar=2@-19,-137+0|behDotless-ar.medi=2+100|dotabove-ar.beh=1@-15,382+0|behDotless-ar.medi.high=1+100|dotbelow-ar=0@72,-46+0|behDotless-ar.init=0+100", + "variations": { + "MSHQ": 10.0 } }, { + "only": "RaqqSura.ttf", "input": "بيحيي", - "expectation": { - "default": "twodotsverticalbelow-ar=4@339,-334+0|alefMaksura-ar.fina=4+282|twodotsverticalbelow-ar=3@79,-137+0|behDotless-ar.medi=3+128|_c.hah.beh=2+7|hah-ar.medi=2+133|twodotsverticalbelow-ar=1@404,-35+0|behDotless-ar.medi=1@0,122+128|dotbelow-ar=0@131,126+0|_c.seen.beh=0@0,122+0|behDotless-ar.init.high=0@0,122+340", - "RaqqSura.ttf": "twodotsverticalbelow-ar=3@311,-329+0|twodotsverticalbelow-ar=3@-14,-137+0|behDotless_alefMaksura-ar.fina=3+110|hah-ar.medi=2+133|twodotsverticalbelow-ar=1@376,-35+0|behDotless-ar.medi=1@0,122+100|dotbelow-ar=0@51,76+0|behDotless-ar.init.high=0@0,122+360" + "expectation": "twodotsverticalbelow-ar=3@311,-329+0|twodotsverticalbelow-ar=3@-14,-137+0|behDotless_alefMaksura-ar.fina=3+110|hah-ar.medi=2+133|twodotsverticalbelow-ar=1@376,-35+0|behDotless-ar.medi=1@0,122+100|dotbelow-ar=0@51,76+0|behDotless-ar.init.high=0@0,122+360", + "variations": { + "MSHQ": 10.0 } }, { + "only": "RaqqSura.ttf", "input": "بيننا", - "expectation": { - "default": "alef-ar.fina=4+101|dotabove-ar.beh=3@8,294+0|_c.seen.beh=3+0|behDotless-ar.medi=3+128|dotabove-ar.beh=2@-7,385+0|_c.seen.beh=2+0|behDotless-ar.medi.high=2+128|twodotsverticalbelow-ar=1@9,-137+0|_c.seen.beh=1+0|behDotless-ar.medi=1+128|dotbelow-ar=0@81,-46+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", - "RaqqSura.ttf": "alef-ar.fina=4+90|dotabove-ar.beh=3@-15,297+0|behDotless-ar.medi=3+100|dotabove-ar.beh=2@-15,382+0|behDotless-ar.medi.high=2+100|twodotsverticalbelow-ar=1@-19,-137+0|behDotless-ar.medi=1+100|dotbelow-ar=0@51,-46+0|behDotless-ar.init.high=0+100" + "expectation": "alef-ar.fina=4+90|dotabove-ar.beh=3@-15,297+0|behDotless-ar.medi=3+100|dotabove-ar.beh=2@-15,382+0|behDotless-ar.medi.high=2+100|twodotsverticalbelow-ar=1@-19,-137+0|behDotless-ar.medi=1+100|dotbelow-ar=0@51,-46+0|behDotless-ar.init.high=0+100", + "variations": { + "MSHQ": 10.0 } }, { + "only": "RaqqSura.ttf", "input": "ججججا", - "expectation": { - "default": "alef-ar.fina=4+101|dotbelow-ar=3@220,-112+0|_c.hah.beh=3+7|hah-ar.medi=3+133|dotbelow-ar=2@401,-18+0|hah-ar.medi.hah=2@0,122+109|dotbelow-ar=1@401,104+0|hah-ar.medi.hah=1@0,244+109|dotbelow-ar=0@400,227+0|hah-ar.init.hah=0@0,366+579", - "RaqqSura.ttf": "alef-ar.fina=4+90|dotbelow-ar=3@213,-112+0|hah-ar.medi=3+133|dotbelow-ar=2@401,-18+0|hah-ar.medi.hah=2@0,122+109|dotbelow-ar=1@401,104+0|hah-ar.medi.hah=1@0,244+109|dotbelow-ar=0@400,227+0|hah-ar.init.hah=0@0,366+579" + "expectation": "alef-ar.fina=4+90|dotbelow-ar=3@213,-112+0|hah-ar.medi=3+133|dotbelow-ar=2@401,-18+0|hah-ar.medi.hah=2@0,122+109|dotbelow-ar=1@401,104+0|hah-ar.medi.hah=1@0,244+109|dotbelow-ar=0@400,227+0|hah-ar.init.hah=0@0,366+579", + "variations": { + "MSHQ": 10.0 } }, { + "only": "RaqqSura.ttf", "input": "جنحوا", - "expectation": { - "default": "alef-ar=4+658|waw-ar.fina.round=3@290,0+782|_c.ain.meem=2@-7,0+28|hah-ar.medi=2@-39,0+94|dotabove-ar.beh=1@8,416+0|behDotless-ar.medi=1@0,122+128|dotbelow-ar=0@270,-10+0|_c.hah.beh=0@0,122+7|hah-ar.init=0@0,122+703", - "RaqqSura.ttf": "alef-ar=4+642|waw-ar.fina=3@-120,0+357|hah-ar.medi=2+133|dotabove-ar.beh=1@-15,419+0|behDotless-ar.medi=1@0,122+100|dotbelow-ar=0@213,10+0|hah-ar.init=0@0,122+703" + "expectation": "alef-ar=4+642|waw-ar.fina=3@-120,0+357|hah-ar.medi=2+133|dotabove-ar.beh=1@-15,419+0|behDotless-ar.medi=1@0,122+100|dotbelow-ar=0@213,10+0|hah-ar.init=0@0,122+703", + "variations": { + "MSHQ": 10.0 } }, { + "only": "RaqqSura.ttf", "input": "حنيفا", - "expectation": { - "default": "alef-ar.fina=4+101|dotabove-ar=3@1,329+0|_c.feh.medi.beh=3+0|fehDotless-ar.medi=3+377|twodotsverticalbelow-ar=2@9,-137+0|_c.seen.beh=2+0|behDotless-ar.medi=2+128|dotabove-ar.beh=1@-7,385+0|_c.seen.beh=1+0|behDotless-ar.medi.high=1+128|_c.hah.beh=0+7|hah-ar.init=0+703", - "RaqqSura.ttf": "alef-ar.fina=4+90|dotabove-ar=3@1,329+0|fehDotless-ar.medi=3+377|twodotsverticalbelow-ar=2@-19,-137+0|behDotless-ar.medi=2+100|dotabove-ar.beh=1@-15,382+0|behDotless-ar.medi.high=1+100|hah-ar.init=0+703" + "expectation": "alef-ar.fina=4+90|dotabove-ar=3@1,329+0|fehDotless-ar.medi=3+377|twodotsverticalbelow-ar=2@-19,-137+0|behDotless-ar.medi=2+100|dotabove-ar.beh=1@-15,382+0|behDotless-ar.medi.high=1+100|hah-ar.init=0+703", + "variations": { + "MSHQ": 10.0 } }, { + "only": "RaqqSura.ttf", "input": "قليلا", - "expectation": { - "default": "lam_alef-ar.fina=3+510|twodotsverticalbelow-ar=2@9,-137+0|behDotless-ar.medi=2+128|_c.seen.beh=1+0|lam-ar.medi=1+125|twodotsverticalabove-ar=0@-31,381+0|_c.feh.init.beh=0+174|fehDotless-ar.init=0@-114,0+220", - "RaqqSura.ttf": "lam_alef-ar.fina=3+522|twodotsverticalbelow-ar=2@-19,-137+0|behDotless-ar.medi=2+100|lam-ar.medi=1+100|twodotsverticalabove-ar=0@-91,381+0|fehDotless-ar.init=0+334" + "expectation": "lam_alef-ar.fina=3+522|twodotsverticalbelow-ar=2@-19,-137+0|behDotless-ar.medi=2+100|lam-ar.medi=1+100|twodotsverticalabove-ar=0@-91,381+0|fehDotless-ar.init=0+334", + "variations": { + "MSHQ": 10.0 } }, { + "only": "RaqqSura.ttf", "input": "لحححا", - "expectation": { - "default": "alef-ar.fina=4+101|_c.hah.beh=3+7|hah-ar.medi=3+133|hah-ar.medi.hah=2@0,122+109|hah-ar.medi.hah.alt=1@0,244+109|lam-ar.init.hah2.alt=0@63,134+578", - "RaqqSura.ttf": "alef-ar.fina=4+90|hah-ar.medi=3+133|hah-ar.medi.hah=2@0,122+109|hah-ar.medi.hah.alt=1@0,244+109|lam-ar.init.hah2.alt=0@63,134+578" + "expectation": "alef-ar.fina=4+90|hah-ar.medi=3+133|hah-ar.medi.hah=2@0,122+109|hah-ar.medi.hah.alt=1@0,244+109|lam-ar.init.hah2.alt=0@63,134+578", + "variations": { + "MSHQ": 10.0 } }, { + "only": "RaqqSura.ttf", "input": "لممحا", - "expectation": { - "default": "alef-ar.fina=4+101|_c.hah.beh=3+7|hah-ar.medi=3+133|meem-ar.medi.round=2@0,122+425|meem-ar.medi.round2=1@0,122+398|lam-ar.init.hah1=0@-22,7+101", - "RaqqSura.ttf": "alef-ar.fina=4+90|hah-ar.medi=3+133|meem-ar.medi.round=2@0,122+425|meem-ar.medi.round2=1@0,122+398|lam-ar.init.hah1=0@-22,7+101" + "expectation": "alef-ar.fina=4+90|hah-ar.medi=3+133|meem-ar.medi.round=2@0,122+425|meem-ar.medi.round2=1@0,122+398|lam-ar.init.hah1=0@-22,7+101", + "variations": { + "MSHQ": 10.0 } }, { + "only": "RaqqSura.ttf", "input": "لنبين", - "expectation": { - "default": "dotabove-ar=4@-3,101+0|noonghunna-ar.fina=4+250|twodotsverticalbelow-ar=3@-15,-137+0|behDotless-ar.medi.round=3+108|dotbelow-ar=2@14,-110+0|_c.seen.beh=2+0|behDotless-ar.medi.high=2+128|dotabove-ar.beh=1@8,294+0|_c.seen.beh=1+0|behDotless-ar.medi=1+128|_c.seen.beh=0+0|lam-ar.init=0+123", - "RaqqSura.ttf": "dotabove-ar=4@-3,90+0|noonghunna-ar.fina=4+250|twodotsverticalbelow-ar=3@50,-137+0|behDotless-ar.medi.round=3@-6,0+104|dotbelow-ar=2@-13,-110+0|behDotless-ar.medi.high=2+100|dotabove-ar.beh=1@-15,297+0|behDotless-ar.medi=1+100|lam-ar.init=0+123" + "expectation": "dotabove-ar=4@-3,90+0|noonghunna-ar.fina=4+250|twodotsverticalbelow-ar=3@50,-137+0|behDotless-ar.medi.round=3@-6,0+104|dotbelow-ar=2@-13,-110+0|behDotless-ar.medi.high=2+100|dotabove-ar.beh=1@-15,297+0|behDotless-ar.medi=1+100|lam-ar.init=0+123", + "variations": { + "MSHQ": 10.0 } }, { + "only": "RaqqSura.ttf", "input": "ليتخذ", - "expectation": { - "default": "dotabove-ar=4@426,249+0|dal-ar.fina=4+875|dotabove-ar=3@-33,220+0|_c.hah.dal=3+71|hah-ar.medi=3@-71,0+62|twodotsverticalabove-ar.beh=2@-22,424+0|behDotless-ar.medi=2@0,122+128|twodotsverticalbelow-ar=1@279,-35+0|_c.seen.beh=1@0,122+0|behDotless-ar.medi.high=1@0,122+128|_c.seen.beh=0@0,122+0|lam-ar.init.hah1=0@0,7+203", - "RaqqSura.ttf": "dotabove-ar=4@420,249+0|dal-ar.fina=4+875|dotabove-ar=3@-33,220+0|hah-ar.medi=3+133|twodotsverticalabove-ar.beh=2@-45,427+0|behDotless-ar.medi=2@0,122+100|twodotsverticalbelow-ar=1@-13,-15+0|behDotless-ar.medi.high=1@0,122+100|lam-ar.init.hah1=0@0,7+283" + "expectation": "dotabove-ar=4@420,249+0|dal-ar.fina=4+875|dotabove-ar=3@-33,220+0|hah-ar.medi=3+133|twodotsverticalabove-ar.beh=2@-45,427+0|behDotless-ar.medi=2@0,122+100|twodotsverticalbelow-ar=1@-13,-15+0|behDotless-ar.medi.high=1@0,122+100|lam-ar.init.hah1=0@0,7+283", + "variations": { + "MSHQ": 10.0 } }, { + "only": "RaqqSura.ttf", "input": "ليفجر", - "expectation": { - "default": "reh-ar.fina=4+393|dotbelow-ar=3@184,-112+0|_c.hah.reh=3@-9,0+102|hah-ar.medi=3@-131,0+2|dotabove-ar=2@1,451+0|fehDotless-ar.medi=2@0,122+377|twodotsverticalbelow-ar=1@24,-35+0|_c.seen.beh=1@0,122+0|behDotless-ar.medi=1@0,122+128|_c.seen.beh=0@0,122+0|lam-ar.init.hah1=0@0,7+123", - "RaqqSura.ttf": "reh-ar.fina=4+387|dotbelow-ar=3@213,-112+0|hah-ar.medi=3+133|dotabove-ar=2@1,451+0|fehDotless-ar.medi=2@0,122+377|twodotsverticalbelow-ar=1@-19,-15+0|behDotless-ar.medi=1@0,122+100|lam-ar.init.hah1=0@0,7+123" + "expectation": "reh-ar.fina=4+387|dotbelow-ar=3@213,-112+0|hah-ar.medi=3+133|dotabove-ar=2@1,451+0|fehDotless-ar.medi=2@0,122+377|twodotsverticalbelow-ar=1@-19,-15+0|behDotless-ar.medi=1@0,122+100|lam-ar.init.hah1=0@0,7+123", + "variations": { + "MSHQ": 10.0 } }, { + "only": "RaqqSura.ttf", "input": "مبنيه", - "expectation": { - "default": "heh-ar.fina=4+339|twodotsverticalbelow-ar=3@9,-137+0|_c.seen.beh=3+0|behDotless-ar.medi=3+128|dotabove-ar.beh=2@-7,385+0|_c.seen.beh=2+0|behDotless-ar.medi.high=2+128|dotbelow-ar=1@9,-110+0|_c.seen.beh=1+0|behDotless-ar.medi=1+128|_c.seen.beh=0+0|meem-ar.init=0+425", - "RaqqSura.ttf": "heh-ar.fina=4+336|twodotsverticalbelow-ar=3@-19,-137+0|behDotless-ar.medi=3+100|dotabove-ar.beh=2@-15,382+0|behDotless-ar.medi.high=2+100|dotbelow-ar=1@-19,-110+0|behDotless-ar.medi=1+100|meem-ar.init=0+425" + "expectation": "heh-ar.fina=4+336|twodotsverticalbelow-ar=3@-19,-137+0|behDotless-ar.medi=3+100|dotabove-ar.beh=2@-15,382+0|behDotless-ar.medi.high=2+100|dotbelow-ar=1@-19,-110+0|behDotless-ar.medi=1+100|meem-ar.init=0+425", + "variations": { + "MSHQ": 10.0 } }, { + "only": "RaqqSura.ttf", "input": "مجلجل", - "expectation": { - "default": "lam-ar.fina=4+177|dotbelow-ar=3@220,-112+0|_c.hah.beh=3+7|hah-ar.medi=3+133|lam-ar.medi.hah1=2@0,7+125|dotbelow-ar=1@270,-10+0|_c.hah.beh=1@0,122+7|hah-ar.medi=1@0,122+133|meem-ar.init=0@0,244+425", - "RaqqSura.ttf": "lam-ar.fina=4+177|dotbelow-ar=3@213,-112+0|hah-ar.medi=3+133|lam-ar.medi.hah1=2@0,7+125|dotbelow-ar=1@213,10+0|hah-ar.medi=1@0,122+133|meem-ar.init=0@0,244+425" + "expectation": "lam-ar.fina=4+177|dotbelow-ar=3@213,-112+0|hah-ar.medi=3+133|lam-ar.medi.hah1=2@0,7+125|dotbelow-ar=1@213,10+0|hah-ar.medi=1@0,122+133|meem-ar.init=0@0,244+425", + "variations": { + "MSHQ": 10.0 } }, { + "only": "RaqqSura.ttf", "input": "وءامن", - "expectation": { - "default": "dotabove-ar=4@-3,101+0|noonghunna-ar.fina=4+250|meem-ar.init.round=3+398|madda-ar=2@241,551+0|alef-ar=2@379,0+1037|hamza-ar=1+0|waw-ar=0@330,0+839", - "RaqqSura.ttf": "dotabove-ar=4@-3,90+0|noonghunna-ar.fina=4+250|meem-ar.init.round=3+398|madda-ar=2@-158,551+0|alef-ar=2@-21,0+621|hamza-ar=1+0|waw-ar=0@-95,0+421" + "expectation": "dotabove-ar=4@-3,90+0|noonghunna-ar.fina=4+250|meem-ar.init.round=3+398|madda-ar=2@-158,551+0|alef-ar=2@-21,0+621|hamza-ar=1+0|waw-ar=0@-95,0+421", + "variations": { + "MSHQ": 10.0 } }, { + "only": "RaqqSura.ttf", "input": "يحسبن", - "expectation": { - "default": "dotabove-ar=4@-3,101+0|noonghunna-ar.fina=4+250|dotbelow-ar=3@55,-110+0|behDotless-ar.medi.round=3+108|_c.seen.beh=2+0|seen-ar.medi=2+401|_c.hah.beh=1+7|hah-ar.medi.alt=1+135|twodotsverticalbelow-ar=0@167,158+0|behDotless-ar.init.hah=0@63,5+572", - "RaqqSura.ttf": "dotabove-ar=4@-3,90+0|noonghunna-ar.fina=4+250|dotbelow-ar=3@50,-110+0|behDotless-ar.medi.round=3@-6,0+104|seen-ar.medi=2+345|hah-ar.medi.alt=1+135|twodotsverticalbelow-ar=0@167,158+0|behDotless-ar.init.hah=0@63,5+572" + "expectation": "dotabove-ar=4@-3,90+0|noonghunna-ar.fina=4+250|dotbelow-ar=3@50,-110+0|behDotless-ar.medi.round=3@-6,0+104|seen-ar.medi=2+345|hah-ar.medi.alt=1+135|twodotsverticalbelow-ar=0@167,158+0|behDotless-ar.init.hah=0@63,5+572", + "variations": { + "MSHQ": 10.0 } }, { + "only": "RaqqSura.ttf", "input": "يلمحح", - "expectation": { - "default": "hah-ar.fina=4+417|hah-ar.medi.hah=3@0,115+109|meem-ar.medi.round=2@0,237+425|lam-ar.medi.hah2.round=1@0,7+95|twodotsverticalbelow-ar=0@72,164+0|_c.seen.beh=0@0,237+0|behDotless-ar.init=0@0,237+130", - "RaqqSura.ttf": "hah-ar.fina=4+417|hah-ar.medi.hah=3@0,115+109|meem-ar.medi.round=2@0,237+425|lam-ar.medi.hah2.round=1@0,7+95|twodotsverticalbelow-ar=0@72,164+0|behDotless-ar.init=0@0,237+100" - } - }, - { - "input": "النبي", - "features": { - "salt": true - }, - "expectation": { - "default": "twodotsverticalbelow-ar=4@259,-523+0|alefMaksura-ar.fina.salt=4+282|dotbelow-ar=3@9,-110+0|behDotless-ar.medi=3+128|dotabove-ar.beh=2@-7,385+0|_c.seen.beh=2+0|behDotless-ar.medi.high=2+128|_c.seen.beh=1+0|lam-ar.init=1+123|alef-ar=0@395,0+1053", - "RaqqSura.ttf": "twodotsverticalbelow-ar=3@311,-329+0|dotbelow-ar=3@-14,-110+0|behDotless_alefMaksura-ar.fina=3+110|dotabove-ar.beh=2@-15,382+0|behDotless-ar.medi.high=2+100|lam-ar.init.short=1+100|alef-ar.lam=0+642" - } - }, - { - "input": "بببسي", - "features": { - "salt": true - }, - "expectation": { - "default": "twodotsverticalbelow-ar=3@339,-337+0|seen_alefMaksura-ar.fina=3+343|dotbelow-ar=2@14,-110+0|_c.seen.beh=2+0|behDotless-ar.medi.high=2+128|dotbelow-ar=1@9,-110+0|_c.seen.beh=1+0|behDotless-ar.medi=1+128|dotbelow-ar=0@81,-46+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", - "RaqqSura.ttf": "twodotsverticalbelow-ar=3@339,-337+0|seen_alefMaksura-ar.fina=3+343|dotbelow-ar=2@-13,-110+0|behDotless-ar.medi.high=2+100|dotbelow-ar=1@-19,-110+0|behDotless-ar.medi=1+100|dotbelow-ar=0@51,-46+0|behDotless-ar.init.high=0+100" - } - }, - { - "input": "بيحيي", - "features": { - "salt": true - }, - "expectation": { - "default": "twodotsverticalbelow-ar=4@259,-523+0|alefMaksura-ar.fina.salt=4+282|twodotsverticalbelow-ar=3@9,-137+0|behDotless-ar.medi=3+128|_c.hah.beh=2+7|hah-ar.medi=2+133|twodotsverticalbelow-ar=1@404,-35+0|behDotless-ar.medi=1@0,122+128|dotbelow-ar=0@131,126+0|_c.seen.beh=0@0,122+0|behDotless-ar.init.high=0@0,122+340", - "RaqqSura.ttf": "twodotsverticalbelow-ar=3@311,-329+0|twodotsverticalbelow-ar=3@-14,-137+0|behDotless_alefMaksura-ar.fina=3+110|hah-ar.medi=2+133|twodotsverticalbelow-ar=1@376,-35+0|behDotless-ar.medi=1@0,122+100|dotbelow-ar=0@51,76+0|behDotless-ar.init.high=0@0,122+360" + "expectation": "hah-ar.fina=4+417|hah-ar.medi.hah=3@0,115+109|meem-ar.medi.round=2@0,237+425|lam-ar.medi.hah2.round=1@0,7+95|twodotsverticalbelow-ar=0@72,164+0|behDotless-ar.init=0@0,237+100", + "variations": { + "MSHQ": 10.0 } }, { + "only": "RaqqSura.ttf", "input": "الرحمن", - "expectation": { - "default": "dotabove-ar=5@-3,101+0|noonghunna-ar.fina=5+250|meem-ar.medi.round2=4+398|_c.ain.meem=3@8,0+43|hah-ar.init=3@-39,0+664|reh-ar.fina=2@260,0+653|lam-ar.init=1+123|alef-ar=0@395,0+1053", - "RaqqSura.ttf": "dotabove-ar=5@-3,90+0|noonghunna-ar.fina=5+250|meem-ar.medi.round2=4+398|hah-ar.init=3+703|reh-ar.fina=2@-140,0+247|lam-ar.init.short=1+100|alef-ar.lam=0+642" + "expectation": "dotabove-ar=5@-3,90+0|noonghunna-ar.fina=5+250|meem-ar.medi.round2=4+398|hah-ar.init=3+703|reh-ar.fina=2@-140,0+247|lam-ar.init.short=1+100|alef-ar.lam=0+642", + "variations": { + "MSHQ": 10.0 } }, { + "only": "RaqqSura.ttf", "input": "الرحيم", - "expectation": { - "default": "meem-ar.fina.round=5+554|twodotsverticalbelow-ar=4@-15,-137+0|behDotless-ar.medi.round=4+108|_c.hah.beh=3+7|hah-ar.init=3+703|reh-ar.fina=2@260,0+653|lam-ar.init=1+123|alef-ar=0@395,0+1053", - "RaqqSura.ttf": "meem-ar.fina.round=5+554|twodotsverticalbelow-ar=4@-20,-137+0|behDotless-ar.medi.round=4@-6,0+104|hah-ar.init=3+703|reh-ar.fina=2@-140,0+247|lam-ar.init.short=1+100|alef-ar.lam=0+642" + "expectation": "meem-ar.fina.round=5+554|twodotsverticalbelow-ar=4@-20,-137+0|behDotless-ar.medi.round=4@-6,0+104|hah-ar.init=3+703|reh-ar.fina=2@-140,0+247|lam-ar.init.short=1+100|alef-ar.lam=0+642", + "variations": { + "MSHQ": 10.0 } }, { + "only": "RaqqSura.ttf", "input": "السلطح", - "expectation": { - "default": "hah-ar.fina=5+417|tah-ar.medi.hah1=4+758|lam-ar.medi.hah1=3@-23,0+102|_c.seen.beh=2@0,115+0|seen-ar.medi=2@0,115+401|_c.seen.beh=1@0,115+0|lam-ar.init.hah1=1+123|alef-ar=0@395,0+1053", - "RaqqSura.ttf": "hah-ar.fina=5+417|tah-ar.medi.hah1=4+758|lam-ar.medi.hah1=3@-23,0+102|seen-ar.medi=2@0,115+345|lam-ar.init.hah1=1+123|alef-ar=0+642" + "expectation": "hah-ar.fina=5+417|tah-ar.medi.hah1=4+758|lam-ar.medi.hah1=3@-23,0+102|seen-ar.medi=2@0,115+345|lam-ar.init.hah1=1+123|alef-ar=0+642", + "variations": { + "MSHQ": 10.0 } }, { + "only": "RaqqSura.ttf", "input": "المليح", - "expectation": { - "default": "hah-ar.fina=5+417|twodotsverticalbelow-ar=4@404,-42+0|behDotless-ar.medi=4@0,115+128|_c.seen.beh=3@0,115+0|lam-ar.medi.hah1=3+125|_c.seen.beh=2@0,115+0|meem-ar.medi=2@0,115+380|lam-ar.init.hah1=1@-25,0+98|alef-ar=0@395,0+1053", - "RaqqSura.ttf": "hah-ar.fina=5+417|twodotsverticalbelow-ar=4@376,-42+0|behDotless-ar.medi=4@0,115+100|lam-ar.medi.hah1=3+125|meem-ar.medi=2@-28,115+352|lam-ar.init.hah1=1+123|alef-ar=0+642" + "expectation": "hah-ar.fina=5+417|twodotsverticalbelow-ar=4@376,-42+0|behDotless-ar.medi=4@0,115+100|lam-ar.medi.hah1=3+125|meem-ar.medi=2@-28,115+352|lam-ar.init.hah1=1+123|alef-ar=0+642", + "variations": { + "MSHQ": 10.0 } }, { + "only": "RaqqSura.ttf", "input": "ببببسي", - "expectation": { - "default": "twodotsverticalbelow-ar=4@339,-337+0|seen_alefMaksura-ar.fina=4+343|dotbelow-ar=3@14,-110+0|_c.seen.beh=3+0|behDotless-ar.medi.high=3+128|dotbelow-ar=2@9,-110+0|_c.seen.beh=2+0|behDotless-ar.medi=2+128|dotbelow-ar=1@14,-110+0|_c.seen.beh=1+0|behDotless-ar.medi.high=1+128|dotbelow-ar=0@72,-46+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", - "RaqqSura.ttf": "twodotsverticalbelow-ar=4@339,-337+0|seen_alefMaksura-ar.fina=4+343|dotbelow-ar=3@-13,-110+0|behDotless-ar.medi.high=3+100|dotbelow-ar=2@-19,-110+0|behDotless-ar.medi=2+100|dotbelow-ar=1@-13,-110+0|behDotless-ar.medi.high=1+100|dotbelow-ar=0@72,-46+0|behDotless-ar.init=0+100" + "expectation": "twodotsverticalbelow-ar=4@339,-337+0|seen_alefMaksura-ar.fina=4+343|dotbelow-ar=3@-13,-110+0|behDotless-ar.medi.high=3+100|dotbelow-ar=2@-19,-110+0|behDotless-ar.medi=2+100|dotbelow-ar=1@-13,-110+0|behDotless-ar.medi.high=1+100|dotbelow-ar=0@72,-46+0|behDotless-ar.init=0+100", + "variations": { + "MSHQ": 10.0 } }, { + "only": "RaqqSura.ttf", "input": "بححححا", - "expectation": { - "default": "alef-ar.fina=5+101|_c.hah.beh=4+7|hah-ar.medi=4+133|hah-ar.medi.hah=3@0,122+109|hah-ar.medi.hah=2@0,244+109|hah-ar.medi.hah.alt=1@0,366+109|dotbelow-ar=0@167,536+0|behDotless-ar.init.hah=0@63,356+572", - "RaqqSura.ttf": "alef-ar.fina=5+90|hah-ar.medi=4+133|hah-ar.medi.hah=3@0,122+109|hah-ar.medi.hah=2@0,244+109|hah-ar.medi.hah.alt=1@0,366+109|dotbelow-ar=0@167,536+0|behDotless-ar.init.hah=0@63,356+572" + "expectation": "alef-ar.fina=5+90|hah-ar.medi=4+133|hah-ar.medi.hah=3@0,122+109|hah-ar.medi.hah=2@0,244+109|hah-ar.medi.hah.alt=1@0,366+109|dotbelow-ar=0@167,536+0|behDotless-ar.init.hah=0@63,356+572", + "variations": { + "MSHQ": 10.0 } }, { + "only": "RaqqSura.ttf", "input": "بطططحة", - "expectation": { - "default": "twodotsverticalabove-ar=5@159,377+0|heh-ar.fina=5+339|_c.hah.beh=4+7|hah-ar.medi=4+133|tah-ar.medi.hah1=3@0,7+758|tah-ar.medi.hah1=2@-9,7+749|tah-ar.medi.hah1=1@-9,7+749|dotbelow-ar=0@51,76+0|behDotless-ar.init=0@-21,122+109", - "RaqqSura.ttf": "twodotsverticalabove-ar=5@186,388+0|heh-ar.fina=5+336|hah-ar.medi=4+133|tah-ar.medi.hah1=3@0,7+758|tah-ar.medi.hah1=2@-9,7+749|tah-ar.medi.hah1=1@-9,7+749|dotbelow-ar=0@72,76+0|behDotless-ar.init=0@0,122+100" + "expectation": "twodotsverticalabove-ar=5@186,388+0|heh-ar.fina=5+336|hah-ar.medi=4+133|tah-ar.medi.hah1=3@0,7+758|tah-ar.medi.hah1=2@-9,7+749|tah-ar.medi.hah1=1@-9,7+749|dotbelow-ar=0@72,76+0|behDotless-ar.init=0@0,122+100", + "variations": { + "MSHQ": 10.0 } }, { + "only": "RaqqSura.ttf", "input": "تحسنين", - "expectation": { - "default": "dotabove-ar=5@-3,101+0|noonghunna-ar.fina=5+250|twodotsverticalbelow-ar=4@55,-137+0|behDotless-ar.medi.round=4+108|dotabove-ar.beh=3@-7,385+0|_c.seen.beh=3+0|behDotless-ar.medi.high=3+128|_c.seen.beh=2+0|seen-ar.medi=2+401|_c.hah.beh=1+7|hah-ar.medi.alt=1+135|twodotsverticalabove-ar.beh=0@14,407+0|behDotless-ar.init.hah=0@63,5+572", - "RaqqSura.ttf": "dotabove-ar=5@-3,90+0|noonghunna-ar.fina=5+250|twodotsverticalbelow-ar=4@50,-137+0|behDotless-ar.medi.round=4@-6,0+104|dotabove-ar.beh=3@-15,382+0|behDotless-ar.medi.high=3+100|seen-ar.medi=2+345|hah-ar.medi.alt=1+135|twodotsverticalabove-ar.beh=0@14,407+0|behDotless-ar.init.hah=0@63,5+572" + "expectation": "dotabove-ar=5@-3,90+0|noonghunna-ar.fina=5+250|twodotsverticalbelow-ar=4@50,-137+0|behDotless-ar.medi.round=4@-6,0+104|dotabove-ar.beh=3@-15,382+0|behDotless-ar.medi.high=3+100|seen-ar.medi=2+345|hah-ar.medi.alt=1+135|twodotsverticalabove-ar.beh=0@14,407+0|behDotless-ar.init.hah=0@63,5+572", + "variations": { + "MSHQ": 10.0 } }, { + "only": "RaqqSura.ttf", "input": "تخطبني", - "expectation": { - "default": "twodotsverticalbelow-ar=5@339,-334+0|alefMaksura-ar.fina=5+282|dotabove-ar.beh=4@8,294+0|behDotless-ar.medi=4+128|dotbelow-ar=3@14,-110+0|_c.seen.beh=3+0|behDotless-ar.medi.high=3+128|_c.seen.beh=2+0|tah-ar.medi=2+758|dotabove-ar=1@-22,198+0|_c.hah.dal=1+71|hah-ar.medi.alt=1@-71,0+64|twodotsverticalabove-ar.beh=0@14,407+0|behDotless-ar.init.hah=0@63,5+572", - "RaqqSura.ttf": "twodotsverticalbelow-ar=4@311,-329+0|dotabove-ar=4@-10,297+0|behDotless_alefMaksura-ar.fina=4+110|dotbelow-ar=3@-13,-110+0|behDotless-ar.medi.high=3+100|tah-ar.medi=2+758|dotabove-ar=1@-22,198+0|hah-ar.medi.alt=1+135|twodotsverticalabove-ar.beh=0@14,407+0|behDotless-ar.init.hah=0@63,5+572" + "expectation": "twodotsverticalbelow-ar=4@311,-329+0|dotabove-ar=4@-10,297+0|behDotless_alefMaksura-ar.fina=4+110|dotbelow-ar=3@-13,-110+0|behDotless-ar.medi.high=3+100|tah-ar.medi=2+758|dotabove-ar=1@-22,198+0|hah-ar.medi.alt=1+135|twodotsverticalabove-ar.beh=0@14,407+0|behDotless-ar.init.hah=0@63,5+572", + "variations": { + "MSHQ": 10.0 } }, { + "only": "RaqqSura.ttf", "input": "تعلمون", - "expectation": { - "default": "dotabove-ar=5@5,191+0|noonghunna-ar=5+295|waw-ar.fina.round=4@400,0+892|meem-ar.medi.round3=3+398|lam-ar.medi.round=2+95|_c.ain.medi.beh=1+66|ain-ar.medi=1+220|twodotsverticalabove-ar.beh=0@-39,400+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", - "RaqqSura.ttf": "dotabove-ar=5@5,191+0|noonghunna-ar=5+295|waw-ar.fina.round=4+492|meem-ar.medi.round3=3+398|lam-ar.medi.round=2+95|ain-ar.medi=1+202|twodotsverticalabove-ar.beh=0@-45,388+0|behDotless-ar.init.high=0+100" + "expectation": "dotabove-ar=5@5,191+0|noonghunna-ar=5+295|waw-ar.fina.round=4+492|meem-ar.medi.round3=3+398|lam-ar.medi.round=2+95|ain-ar.medi=1+202|twodotsverticalabove-ar.beh=0@-45,388+0|behDotless-ar.init.high=0+100", + "variations": { + "MSHQ": 10.0 } }, { + "only": "RaqqSura.ttf", "input": "تيــتم", - "expectation": { - "default": "meem-ar.fina.round=5+554|twodotsverticalabove-ar.beh=4@-59,278+0|behDotless-ar.medi.round.kashida=4+178|kashida-ar=3+100|kashida-ar=2+100|twodotsverticalbelow-ar=1@9,-137+0|behDotless-ar.medi=1+128|twodotsverticalabove-ar.beh=0@-39,400+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", - "RaqqSura.ttf": "meem-ar.fina.round=5+554|twodotsverticalabove-ar.beh=4@-41,305+0|behDotless-ar.medi.round=4@-6,0+104|kashida-ar=3+100|kashida-ar=2+100|twodotsverticalbelow-ar=1@-19,-137+0|behDotless-ar.medi=1+100|twodotsverticalabove-ar.beh=0@-45,388+0|behDotless-ar.init.high=0+100" + "expectation": "meem-ar.fina.round=5+554|twodotsverticalabove-ar.beh=4@-41,305+0|behDotless-ar.medi.round=4@-6,0+104|kashida-ar=3+100|kashida-ar=2+100|twodotsverticalbelow-ar=1@-19,-137+0|behDotless-ar.medi=1+100|twodotsverticalabove-ar.beh=0@-45,388+0|behDotless-ar.init.high=0+100", + "variations": { + "MSHQ": 10.0 } }, { + "only": "RaqqSura.ttf", "input": "حاججتم", - "expectation": { - "default": "meem-ar.fina.round=5+554|twodotsverticalabove-ar.beh=4@-59,278+0|behDotless-ar.medi.round=4+108|dotbelow-ar=3@220,-112+0|_c.hah.beh=3+7|hah-ar.medi=3+133|dotbelow-ar=2@400,-17+0|hah-ar.init.hah=2@0,122+579|alef-ar.fina=1@400,0+501|_c.hah.beh=0+7|hah-ar.init=0+703", - "RaqqSura.ttf": "meem-ar.fina.round=5+554|twodotsverticalabove-ar.beh=4@-41,305+0|behDotless-ar.medi.round=4@-6,0+104|dotbelow-ar=3@213,-112+0|hah-ar.medi=3+133|dotbelow-ar=2@400,-17+0|hah-ar.init.hah=2@0,122+579|alef-ar.fina=1+90|hah-ar.init=0+703" + "expectation": "meem-ar.fina.round=5+554|twodotsverticalabove-ar.beh=4@-41,305+0|behDotless-ar.medi.round=4@-6,0+104|dotbelow-ar=3@213,-112+0|hah-ar.medi=3+133|dotbelow-ar=2@400,-17+0|hah-ar.init.hah=2@0,122+579|alef-ar.fina=1+90|hah-ar.init=0+703", + "variations": { + "MSHQ": 10.0 } }, { + "only": "RaqqSura.ttf", "input": "رِزقاً", - "expectation": { - "default": "fathatan-ar.alt=3@91,527+0|twodotsverticalabove-ar=3@123,402+0|fehDotless_alef-ar=3+560|dotabove-ar.reh=2@473,161+0|reh-ar=2@330,0+780|kasra-ar=0@658,-170+0|reh-ar=0@400,0+850", - "RaqqSura.ttf": "fathatan-ar.alt=3@91,527+0|twodotsverticalabove-ar=3@123,402+0|fehDotless_alef-ar=3+560|dotabove-ar.reh=2@76,150+0|reh-ar=2@-70,0+383|kasra-ar=0@261,-162+0|reh-ar=0+453" + "expectation": "fathatan-ar.alt=3@91,527+0|twodotsverticalabove-ar=3@123,402+0|fehDotless_alef-ar=3+560|dotabove-ar.reh=2@76,150+0|reh-ar=2@-70,0+383|kasra-ar=0@261,-162+0|reh-ar=0+453", + "variations": { + "MSHQ": 10.0 } }, { + "only": "RaqqSura.ttf", "input": "لتحسبو", - "expectation": { - "default": "waw-ar.fina=5+472|dotbelow-ar=4@-1,-140+0|behDotless-ar.medi=4@-10,0+118|_c.seen.beh=3+0|seen-ar.medi.low=3+411|_c.hah.beh=2+7|hah-ar.medi=2+133|twodotsverticalabove-ar.beh=1@-22,424+0|behDotless-ar.medi=1@0,122+128|_c.seen.beh=0@0,122+0|lam-ar.init.hah1=0@0,7+333", - "RaqqSura.ttf": "waw-ar.fina=5+477|dotbelow-ar=4@-29,-140+0|behDotless-ar.medi=4@-10,0+90|seen-ar.medi.low=3+433|hah-ar.medi=2@5,0+138|twodotsverticalabove-ar.beh=1@-45,427+0|behDotless-ar.medi=1@0,122+100|lam-ar.init.hah1=0@0,7+383" + "expectation": "waw-ar.fina=5+477|dotbelow-ar=4@-29,-140+0|behDotless-ar.medi=4@-10,0+90|seen-ar.medi.low=3+433|hah-ar.medi=2@5,0+138|twodotsverticalabove-ar.beh=1@-45,427+0|behDotless-ar.medi=1@0,122+100|lam-ar.init.hah1=0@0,7+383", + "variations": { + "MSHQ": 10.0 } }, { + "only": "RaqqSura.ttf", "input": "لححححا", - "expectation": { - "default": "alef-ar.fina=5+101|_c.hah.beh=4+7|hah-ar.medi=4+133|hah-ar.medi.hah=3@0,122+109|hah-ar.medi.hah=2@0,244+109|hah-ar.medi.hah.alt=1@0,366+109|lam-ar.init.hah2.alt=0@63,256+578", - "RaqqSura.ttf": "alef-ar.fina=5+90|hah-ar.medi=4+133|hah-ar.medi.hah=3@0,122+109|hah-ar.medi.hah=2@0,244+109|hah-ar.medi.hah.alt=1@0,366+109|lam-ar.init.hah2.alt=0@63,256+578" + "expectation": "alef-ar.fina=5+90|hah-ar.medi=4+133|hah-ar.medi.hah=3@0,122+109|hah-ar.medi.hah=2@0,244+109|hah-ar.medi.hah.alt=1@0,366+109|lam-ar.init.hah2.alt=0@63,256+578", + "variations": { + "MSHQ": 10.0 } }, { + "only": "RaqqSura.ttf", "input": "لسنتهم", - "expectation": { - "default": "meem-ar.fina.round=5+554|heh-ar.medi.round=4+323|twodotsverticalabove-ar.vert.beh=3@5,298+0|_c.seen.beh=3+0|behDotless-ar.medi=3+128|dotabove-ar.beh=2@-7,385+0|_c.seen.beh=2+0|behDotless-ar.medi.high=2+128|_c.seen.beh=1+0|seen-ar.medi=1+401|_c.seen.beh=0+0|lam-ar.init=0+123", - "RaqqSura.ttf": "meem-ar.fina.round=5+554|heh-ar.medi.round=4+320|twodotsverticalabove-ar.vert.beh=3@-18,301+0|behDotless-ar.medi=3+100|dotabove-ar.beh=2@-15,382+0|behDotless-ar.medi.high=2+100|seen-ar.medi=1+345|lam-ar.init=0+123" + "expectation": "meem-ar.fina.round=5+554|heh-ar.medi.round=4+320|twodotsverticalabove-ar.vert.beh=3@-18,301+0|behDotless-ar.medi=3+100|dotabove-ar.beh=2@-15,382+0|behDotless-ar.medi.high=2+100|seen-ar.medi=1+345|lam-ar.init=0+123", + "variations": { + "MSHQ": 10.0 } }, { + "only": "RaqqSura.ttf", "input": "مسلمون", - "expectation": { - "default": "dotabove-ar=5@5,191+0|noonghunna-ar=5+295|waw-ar.fina.round=4@400,0+892|meem-ar.medi.round3=3+398|lam-ar.medi.round=2+95|_c.seen.beh=1+0|seen-ar.medi.low=1+411|_c.seen.beh=0+0|meem-ar.init=0+425", - "RaqqSura.ttf": "dotabove-ar=5@5,191+0|noonghunna-ar=5+295|waw-ar.fina.round=4+492|meem-ar.medi.round3=3+398|lam-ar.medi.round=2+95|seen-ar.medi=1+345|meem-ar.init=0+425" + "expectation": "dotabove-ar=5@5,191+0|noonghunna-ar=5+295|waw-ar.fina.round=4+492|meem-ar.medi.round3=3+398|lam-ar.medi.round=2+95|seen-ar.medi=1+345|meem-ar.init=0+425", + "variations": { + "MSHQ": 10.0 } }, { + "only": "RaqqSura.ttf", "input": "مَثلاً", - "expectation": { - "default": "fathatan-ar.alt=3@335,503+0|lam_alef-ar.fina=3+510|threedotsupabove-ar.vert.beh=2@5,298+0|behDotless-ar.medi=2+128|fatha-ar=0@165,345+0|_c.seen.beh=0+0|meem-ar.init=0+425", - "RaqqSura.ttf": "fathatan-ar.alt=3@389,503+0|lam_alef-ar.fina=3+522|threedotsupabove-ar.vert.beh=2@-18,301+0|behDotless-ar.medi=2+100|fatha-ar=0@165,345+0|meem-ar.init=0+425" + "expectation": "fathatan-ar.alt=3@389,503+0|lam_alef-ar.fina=3+522|threedotsupabove-ar.vert.beh=2@-18,301+0|behDotless-ar.medi=2+100|fatha-ar=0@165,345+0|meem-ar.init=0+425", + "variations": { + "MSHQ": 10.0 } }, { + "only": "RaqqSura.ttf", "input": "يلبسون", - "expectation": { - "default": "dotabove-ar=5@5,191+0|noonghunna-ar=5+295|waw-ar.fina=4@400,0+872|seen-ar.medi.low=3+411|dotbelow-ar=2@17,-110+0|_c.seen.beh=2+0|behDotless-ar.medi.med=2+128|_c.seen.beh=1+0|lam-ar.medi=1+125|twodotsverticalbelow-ar=0@72,-73+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", - "RaqqSura.ttf": "dotabove-ar=5@5,191+0|noonghunna-ar=5+295|waw-ar.fina=4+477|seen-ar.medi=3+345|dotbelow-ar=2@-13,-110+0|behDotless-ar.medi.high=2+100|lam-ar.medi=1+100|twodotsverticalbelow-ar=0@72,-73+0|behDotless-ar.init=0+100" + "expectation": "dotabove-ar=5@5,191+0|noonghunna-ar=5+295|waw-ar.fina=4+477|seen-ar.medi=3+345|dotbelow-ar=2@-13,-110+0|behDotless-ar.medi.high=2+100|lam-ar.medi=1+100|twodotsverticalbelow-ar=0@72,-73+0|behDotless-ar.init=0+100", + "variations": { + "MSHQ": 10.0 } }, { + "only": "RaqqSura.ttf", "input": "يُضِلُ", - "expectation": { - "default": "damma-ar=4@-42,-19+0|lam-ar.fina=4+177|kasra-ar=2@293,-130+0|dotabove-ar=2@310,247+0|_c.seen.beh=2+0|sad-ar.medi=2+758|damma-ar=0@-84,98+0|twodotsverticalbelow-ar=0@51,-73+0|behDotless-ar.init=0@-21,0+109", - "RaqqSura.ttf": "damma-ar=4@-42,-19+0|lam-ar.fina=4+177|kasra-ar=2@293,-130+0|dotabove-ar=2@310,247+0|sad-ar.medi=2+758|damma-ar=0@-85,98+0|twodotsverticalbelow-ar=0@72,-73+0|behDotless-ar.init=0+100" - } - }, - { - "input": "ببببسي", - "features": { - "salt": true - }, - "expectation": { - "default": "twodotsverticalbelow-ar=4@339,-337+0|seen_alefMaksura-ar.fina=4+343|dotbelow-ar=3@14,-110+0|_c.seen.beh=3+0|behDotless-ar.medi.high=3+128|dotbelow-ar=2@9,-110+0|_c.seen.beh=2+0|behDotless-ar.medi=2+128|dotbelow-ar=1@14,-110+0|_c.seen.beh=1+0|behDotless-ar.medi.high=1+128|dotbelow-ar=0@72,-46+0|_c.seen.beh=0+0|behDotless-ar.init=0+130", - "RaqqSura.ttf": "twodotsverticalbelow-ar=4@339,-337+0|seen_alefMaksura-ar.fina=4+343|dotbelow-ar=3@-13,-110+0|behDotless-ar.medi.high=3+100|dotbelow-ar=2@-19,-110+0|behDotless-ar.medi=2+100|dotbelow-ar=1@-13,-110+0|behDotless-ar.medi.high=1+100|dotbelow-ar=0@72,-46+0|behDotless-ar.init=0+100" - } - }, - { - "input": "تخطبني", - "features": { - "salt": true - }, - "expectation": { - "default": "twodotsverticalbelow-ar=5@259,-523+0|alefMaksura-ar.fina.salt=5+282|dotabove-ar.beh=4@8,294+0|behDotless-ar.medi=4+128|dotbelow-ar=3@14,-110+0|_c.seen.beh=3+0|behDotless-ar.medi.high=3+128|_c.seen.beh=2+0|tah-ar.medi=2+758|dotabove-ar=1@-22,198+0|_c.hah.dal=1+71|hah-ar.medi.alt=1@-71,0+64|twodotsverticalabove-ar.beh=0@14,407+0|behDotless-ar.init.hah=0@63,5+572", - "RaqqSura.ttf": "twodotsverticalbelow-ar=4@311,-329+0|dotabove-ar=4@-10,297+0|behDotless_alefMaksura-ar.fina=4+110|dotbelow-ar=3@-13,-110+0|behDotless-ar.medi.high=3+100|tah-ar.medi=2+758|dotabove-ar=1@-22,198+0|hah-ar.medi.alt=1+135|twodotsverticalabove-ar.beh=0@14,407+0|behDotless-ar.init.hah=0@63,5+572" - } - }, - { - "input": "تخطبني", - "features": { - "ss01": true - }, - "expectation": { - "default": "alefMaksura-ar.fina.tooth=5+9|behDotless-ar.medi.round=4+108|_c.seen.beh=3+0|behDotless-ar.medi.high=3+128|_c.seen.beh=2+0|tah-ar.medi=2+758|_c.hah.dal=1+71|hah-ar.medi.alt=1@-71,0+64|behDotless-ar.init.hah=0@63,5+572", - "RaqqSura.ttf": "behDotless_alefMaksura-ar.fina=4+110|behDotless-ar.medi.high=3+100|tah-ar.medi=2+758|hah-ar.medi.alt=1+135|behDotless-ar.init.hah=0@63,5+572" + "expectation": "damma-ar=4@-42,-19+0|lam-ar.fina=4+177|kasra-ar=2@293,-130+0|dotabove-ar=2@310,247+0|sad-ar.medi=2+758|damma-ar=0@-85,98+0|twodotsverticalbelow-ar=0@72,-73+0|behDotless-ar.init=0+100", + "variations": { + "MSHQ": 10.0 } }, { + "only": "RaqqSura.ttf", "input": "اطلططحی", - "expectation": { - "default": "alefMaksura-ar.fina=6+282|_c.ain.yeh=5@-20,0+-5|hah-ar.medi=5@-40,0+93|tah-ar.medi.hah1=4@0,7+758|tah-ar.medi.hah1=3@-9,7+749|lam-ar.medi.hah1=2@-23,7+102|_c.seen.beh=1@0,122+0|tah-ar.init.hah1=1@0,7+765|alef-ar=0@400,0+1058", - "RaqqSura.ttf": "alefMaksura-ar.fina=6+282|hah-ar.medi=5+133|tah-ar.medi.hah1=4@0,7+758|tah-ar.medi.hah1=3@-9,7+749|lam-ar.medi.hah1=2@-23,7+102|tah-ar.init.hah1=1@0,7+765|alef-ar=0+642" + "expectation": "alefMaksura-ar.fina=6+282|hah-ar.medi=5+133|tah-ar.medi.hah1=4@0,7+758|tah-ar.medi.hah1=3@-9,7+749|lam-ar.medi.hah1=2@-23,7+102|tah-ar.init.hah1=1@0,7+765|alef-ar=0+642", + "variations": { + "MSHQ": 10.0 } }, { + "only": "RaqqSura.ttf", "input": "الحجارة", - "expectation": { - "default": "twodotsverticalabove-ar=6@154,403+0|heh-ar=6+356|reh-ar=5@350,0+800|alef-ar.fina=4@400,0+501|dotbelow-ar=3@220,-112+0|_c.hah.beh=3+7|hah-ar.medi=3+133|hah-ar.medi.hah.alt=2@0,122+109|lam-ar.init.hah2.alt=1@63,12+578|alef-ar=0@400,0+1058", - "RaqqSura.ttf": "twodotsverticalabove-ar=6@201,436+0|heh-ar=6+356|reh-ar=5@-53,0+400|alef-ar.fina=4+90|dotbelow-ar=3@213,-112+0|hah-ar.medi=3+133|hah-ar.medi.hah.alt=2@0,122+109|lam-ar.init.hah2.alt=1@63,12+578|alef-ar=0+642" + "expectation": "twodotsverticalabove-ar=6@201,436+0|heh-ar=6+356|reh-ar=5@-53,0+400|alef-ar.fina=4+90|dotbelow-ar=3@213,-112+0|hah-ar.medi=3+133|hah-ar.medi.hah.alt=2@0,122+109|lam-ar.init.hah2.alt=1@63,12+578|alef-ar=0+642", + "variations": { + "MSHQ": 10.0 } }, { + "only": "RaqqSura.ttf", "input": "الطبجبج", - "expectation": { - "default": "dotbelow-ar=6@571,-122+0|hah-ar.fina=6+417|dotbelow-ar=5@404,-15+0|behDotless-ar.medi=5@0,115+128|dotbelow-ar=4@370,-17+0|_c.hah.beh=4@0,115+7|hah-ar.medi=4@0,115+133|dotbelow-ar=3@404,107+0|behDotless-ar.medi=3@0,237+128|_c.seen.beh=2@0,237+0|tah-ar.medi.hah2=2@0,7+758|lam-ar.init.hah2=1@-23,7+100|alef-ar=0@395,0+1053", - "RaqqSura.ttf": "dotbelow-ar=6@571,-122+0|hah-ar.fina=6+417|dotbelow-ar=5@376,-15+0|behDotless-ar.medi=5@0,115+100|dotbelow-ar=4@213,3+0|hah-ar.medi=4@0,115+133|dotbelow-ar=3@376,107+0|behDotless-ar.medi=3@0,237+100|tah-ar.medi.hah2=2@0,7+758|lam-ar.init.hah2=1@-23,7+100|alef-ar=0+642" + "expectation": "dotbelow-ar=6@571,-122+0|hah-ar.fina=6+417|dotbelow-ar=5@376,-15+0|behDotless-ar.medi=5@0,115+100|dotbelow-ar=4@213,3+0|hah-ar.medi=4@0,115+133|dotbelow-ar=3@376,107+0|behDotless-ar.medi=3@0,237+100|tah-ar.medi.hah2=2@0,7+758|lam-ar.init.hah2=1@-23,7+100|alef-ar=0+642", + "variations": { + "MSHQ": 10.0 } }, { + "only": "RaqqSura.ttf", "input": "اللبجلج", - "expectation": { - "default": "dotbelow-ar=6@571,-122+0|hah-ar.fina=6+417|lam-ar.medi.hah1=5+125|dotbelow-ar=4@270,-17+0|_c.hah.beh=4@0,115+7|hah-ar.medi=4@0,115+133|dotbelow-ar=3@404,107+0|behDotless-ar.medi=3@0,237+128|_c.seen.beh=2@0,237+0|lam-ar.medi.hah2=2@0,7+125|_c.seen.beh=1@0,237+0|lam-ar.init.hah2=1@0,7+203|alef-ar=0@395,0+1053", - "RaqqSura.ttf": "dotbelow-ar=6@571,-122+0|hah-ar.fina=6+417|lam-ar.medi.hah1=5+125|dotbelow-ar=4@213,3+0|hah-ar.medi=4@0,115+133|dotbelow-ar=3@376,107+0|behDotless-ar.medi=3@0,237+100|lam-ar.medi.hah2=2@0,7+125|lam-ar.init.hah2=1@0,7+283|alef-ar=0+642" + "expectation": "dotbelow-ar=6@571,-122+0|hah-ar.fina=6+417|lam-ar.medi.hah1=5+125|dotbelow-ar=4@213,3+0|hah-ar.medi=4@0,115+133|dotbelow-ar=3@376,107+0|behDotless-ar.medi=3@0,237+100|lam-ar.medi.hah2=2@0,7+125|lam-ar.init.hah2=1@0,7+283|alef-ar=0+642", + "variations": { + "MSHQ": 10.0 } }, { + "only": "RaqqSura.ttf", "input": "الملتحف", - "expectation": { - "default": "dotabove-ar=6@609,319+0|fehDotless-ar.fina=6+997|_c.hah.beh=5@3,0+10|hah-ar.medi=5+133|twodotsverticalabove-ar.beh=4@-22,424+0|behDotless-ar.medi=4@0,122+128|_c.seen.beh=3@0,122+0|lam-ar.medi.hah1=3@0,7+125|_c.seen.beh=2@0,122+0|meem-ar.medi=2@0,122+380|lam-ar.init.hah1=1@-25,7+98|alef-ar=0@395,0+1053", - "RaqqSura.ttf": "dotabove-ar=6@609,319+0|fehDotless-ar.fina=6+997|hah-ar.medi=5+133|twodotsverticalabove-ar.beh=4@-45,427+0|behDotless-ar.medi=4@0,122+100|lam-ar.medi.hah1=3@0,7+125|meem-ar.medi=2@-28,122+352|lam-ar.init.hah1=1@0,7+123|alef-ar=0+642" + "expectation": "dotabove-ar=6@609,319+0|fehDotless-ar.fina=6+997|hah-ar.medi=5+133|twodotsverticalabove-ar.beh=4@-45,427+0|behDotless-ar.medi=4@0,122+100|lam-ar.medi.hah1=3@0,7+125|meem-ar.medi=2@-28,122+352|lam-ar.init.hah1=1@0,7+123|alef-ar=0+642", + "variations": { + "MSHQ": 10.0 } }, { + "only": "RaqqSura.ttf", "input": "فسنيسرك", - "expectation": { - "default": "kaf-ar=6+896|reh-ar.fina=5@325,0+718|seen-ar.medi.low=4+411|twodotsverticalbelow-ar=3@17,-137+0|_c.seen.beh=3+0|behDotless-ar.medi.med=3+128|dotabove-ar.beh=2@-7,385+0|_c.seen.beh=2+0|behDotless-ar.medi.high=2+128|_c.seen.beh=1+0|seen-ar.medi=1+401|dotabove-ar=0@-1,373+0|_c.feh.init.beh=0+174|fehDotless-ar.init=0@-114,0+220", - "RaqqSura.ttf": "kaf-ar=6+896|reh-ar.fina=5@-75,0+312|seen-ar.medi=4+345|twodotsverticalbelow-ar=3@-13,-137+0|behDotless-ar.medi.high=3+100|dotabove-ar.beh=2@-15,382+0|behDotless-ar.medi.high=2+100|seen-ar.medi=1+345|dotabove-ar=0@-61,373+0|fehDotless-ar.init=0+334" + "expectation": "kaf-ar=6+896|reh-ar.fina=5@-75,0+312|seen-ar.medi=4+345|twodotsverticalbelow-ar=3@-13,-137+0|behDotless-ar.medi.high=3+100|dotabove-ar.beh=2@-15,382+0|behDotless-ar.medi.high=2+100|seen-ar.medi=1+345|dotabove-ar=0@-61,373+0|fehDotless-ar.init=0+334", + "variations": { + "MSHQ": 10.0 } }, { + "only": "RaqqSura.ttf", "input": "كَلِمةٍ", - "expectation": { - "default": "kasratan-ar=5@94,-127+0|twodotsverticalabove-ar=5@159,377+0|heh-ar.fina=5+339|_c.seen.beh=4+0|meem-ar.medi.round=4+425|kasra-ar=2@-15,-131+0|lam-ar.medi.round=2+95|fatha-ar=0@111,279+0|kaf-ar.init.alt=0@-5,0+760", - "RaqqSura.ttf": "kasratan-ar=5@94,-127+0|twodotsverticalabove-ar=5@186,388+0|heh-ar.fina=5+336|meem-ar.medi.round=4+425|kasra-ar=2@-15,-131+0|lam-ar.medi.round=2+95|fatha-ar=0@111,279+0|kaf-ar.init=0@-5,0+760" + "expectation": "kasratan-ar=5@94,-127+0|twodotsverticalabove-ar=5@186,388+0|heh-ar.fina=5+336|meem-ar.medi.round=4+425|kasra-ar=2@-15,-131+0|lam-ar.medi.round=2+95|fatha-ar=0@111,279+0|kaf-ar.init=0@-5,0+760", + "variations": { + "MSHQ": 10.0 } }, { + "only": "RaqqSura.ttf", "input": "ملجـًٔا", - "expectation": { - "default": "fathatan-ar.alt=6@70,508+0|alef-ar.fina=6+101|hamza_fathatan-ar=3+0|dotbelow-ar=2@220,-112+0|_c.hah.beh=2+7|hah-ar.medi=2+133|lam-ar.medi.hah1=1@0,7+125|_c.seen.beh=0@0,122+0|meem-ar.init=0@0,122+425", - "RaqqSura.ttf": "fathatan-ar.alt=6@60,508+0|alef-ar.fina=6+90|hamza_fathatan-ar=3+0|dotbelow-ar=2@213,-112+0|hah-ar.medi=2+133|lam-ar.medi.hah1=1@0,7+125|meem-ar.init=0@0,122+425" + "expectation": "fathatan-ar.alt=6@60,508+0|alef-ar.fina=6+90|hamza_fathatan-ar=3+0|dotbelow-ar=2@213,-112+0|hah-ar.medi=2+133|lam-ar.medi.hah1=1@0,7+125|meem-ar.init=0@0,122+425", + "variations": { + "MSHQ": 10.0 } }, { + "only": "RaqqSura.ttf", "input": "ٮٮسـٰها", - "expectation": { - "default": "alef-ar.fina=6+101|_c.feh.medi.beh=5+0|heh-ar.medi=5+357|alefabove-ar=3+0|_c.seen.beh=2+0|seen-ar.medi.low=2+411|_c.seen.beh=1+0|behDotless-ar.medi.med=1+128|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", - "RaqqSura.ttf": "alef-ar.fina=6+90|heh-ar.medi=5@-26,0+328|alefabove-ar=3+0|seen-ar.medi=2+345|behDotless-ar.medi.high=1+100|behDotless-ar.init.high=0+100" - } - }, - { - "input": "اطلططحی", - "features": { - "salt": true - }, - "expectation": { - "default": "alefMaksura-ar.fina.salt=6+282|_c.ain.yeh=5@-20,0+-5|hah-ar.medi=5@-40,0+93|tah-ar.medi.hah1=4@0,7+758|tah-ar.medi.hah1=3@-9,7+749|lam-ar.medi.hah1=2@-23,7+102|_c.seen.beh=1@0,122+0|tah-ar.init.hah1=1@0,7+765|alef-ar=0@400,0+1058", - "RaqqSura.ttf": "alefMaksura-ar.fina.salt=6+282|hah-ar.medi=5+133|tah-ar.medi.hah1=4@0,7+758|tah-ar.medi.hah1=3@-9,7+749|lam-ar.medi.hah1=2@-23,7+102|tah-ar.init.hah1=1@0,7+765|alef-ar=0+642" + "expectation": "alef-ar.fina=6+90|heh-ar.medi=5@-26,0+328|alefabove-ar=3+0|seen-ar.medi=2+345|behDotless-ar.medi.high=1+100|behDotless-ar.init.high=0+100", + "variations": { + "MSHQ": 10.0 } }, { + "only": "RaqqSura.ttf", "input": "الاصطخري", - "expectation": { - "default": "twodotsverticalbelow-ar=7@350,-245+0|alefMaksura-ar=7+395|reh-ar.fina=6@400,0+793|dotabove-ar=5@-62,220+0|_c.hah.reh=5@-9,0+102|hah-ar.medi=5@-131,0+2|tah-ar.medi.hah1=4@0,7+758|sad-ar.init=3@-9,122+756|lam_alef-ar=1@400,0+942|alef-ar=0@340,0+998", - "RaqqSura.ttf": "twodotsverticalbelow-ar=7@350,-213+0|alefMaksura-ar=7+393|reh-ar.fina=6+387|dotabove-ar=5@-33,220+0|hah-ar.medi=5+133|tah-ar.medi.hah1=4@0,7+758|sad-ar.init=3@-9,122+756|lam_alef-ar=1@-32,0+510|alef-ar=0@-113,0+529" + "expectation": "twodotsverticalbelow-ar=7@350,-213+0|alefMaksura-ar=7+393|reh-ar.fina=6+387|dotabove-ar=5@-33,220+0|hah-ar.medi=5+133|tah-ar.medi.hah1=4@0,7+758|sad-ar.init=3@-9,122+756|lam_alef-ar=1@-32,0+510|alef-ar=0@-113,0+529", + "variations": { + "MSHQ": 10.0 } }, { + "only": "RaqqSura.ttf", "input": "الحجَارة", - "expectation": { - "default": "twodotsverticalabove-ar=7@154,403+0|heh-ar=7+356|reh-ar=6@350,0+800|alef-ar.fina=5@400,0+501|fatha-ar=3@1,285+0|dotbelow-ar=3@220,-112+0|_c.hah.beh=3+7|hah-ar.medi=3+133|hah-ar.medi.hah.alt=2@0,122+109|lam-ar.init.hah2.alt=1@63,12+578|alef-ar=0@400,0+1058", - "RaqqSura.ttf": "twodotsverticalabove-ar=7@201,436+0|heh-ar=7+356|reh-ar=6@-53,0+400|alef-ar.fina=5+90|fatha-ar=3@-6,285+0|dotbelow-ar=3@213,-112+0|hah-ar.medi=3+133|hah-ar.medi.hah.alt=2@0,122+109|lam-ar.init.hah2.alt=1@63,12+578|alef-ar=0+642" + "expectation": "twodotsverticalabove-ar=7@201,436+0|heh-ar=7+356|reh-ar=6@-53,0+400|alef-ar.fina=5+90|fatha-ar=3@-6,285+0|dotbelow-ar=3@213,-112+0|hah-ar.medi=3+133|hah-ar.medi.hah.alt=2@0,122+109|lam-ar.init.hah2.alt=1@63,12+578|alef-ar=0+642", + "variations": { + "MSHQ": 10.0 } }, { + "only": "RaqqSura.ttf", "input": "المتلجلج", - "expectation": { - "default": "dotbelow-ar=7@571,-122+0|hah-ar.fina=7+417|lam-ar.medi.hah1=6+125|dotbelow-ar=5@270,-17+0|_c.hah.beh=5@0,115+7|hah-ar.medi=5@0,115+133|lam-ar.medi.hah2=4@0,7+125|twodotsverticalabove-ar.vert.beh=3@5,535+0|_c.seen.beh=3@0,237+0|behDotless-ar.medi=3@0,237+128|_c.seen.beh=2@0,237+0|meem-ar.medi=2@0,237+380|lam-ar.init.hah2=1@-25,7+98|alef-ar=0@395,0+1053", - "RaqqSura.ttf": "dotbelow-ar=7@571,-122+0|hah-ar.fina=7+417|lam-ar.medi.hah1=6+125|dotbelow-ar=5@213,3+0|hah-ar.medi=5@0,115+133|lam-ar.medi.hah2=4@0,7+125|twodotsverticalabove-ar.vert.beh=3@-18,538+0|behDotless-ar.medi=3@0,237+100|meem-ar.medi=2@-28,237+352|lam-ar.init.hah2=1@0,7+123|alef-ar=0+642" + "expectation": "dotbelow-ar=7@571,-122+0|hah-ar.fina=7+417|lam-ar.medi.hah1=6+125|dotbelow-ar=5@213,3+0|hah-ar.medi=5@0,115+133|lam-ar.medi.hah2=4@0,7+125|twodotsverticalabove-ar.vert.beh=3@-18,538+0|behDotless-ar.medi=3@0,237+100|meem-ar.medi=2@-28,237+352|lam-ar.init.hah2=1@0,7+123|alef-ar=0+642", + "variations": { + "MSHQ": 10.0 } }, { + "only": "RaqqSura.ttf", "input": "المســيح", - "expectation": { - "default": "hah-ar.fina=7+417|twodotsverticalbelow-ar=6@404,-42+0|behDotless-ar.medi=6@0,115+128|_c.ain.init.beh=5@0,115+95|kashida-ar=5@0,115+100|kashida-ar=4@0,115+100|seen-ar.medi.low=3@0,115+411|_c.seen.beh=2@0,115+0|meem-ar.medi=2@0,115+380|lam-ar.init.hah1=1@-25,0+98|alef-ar=0@395,0+1053", - "RaqqSura.ttf": "hah-ar.fina=7+417|twodotsverticalbelow-ar=6@376,-42+0|behDotless-ar.medi=6@0,115+100|kashida-ar=5@0,115+100|kashida-ar=4@0,115+100|seen-ar.medi=3@0,115+345|meem-ar.medi=2@-28,115+352|lam-ar.init.hah1=1+123|alef-ar=0+642" + "expectation": "hah-ar.fina=7+417|twodotsverticalbelow-ar=6@376,-42+0|behDotless-ar.medi=6@0,115+100|kashida-ar=5@0,115+100|kashida-ar=4@0,115+100|seen-ar.medi=3@0,115+345|meem-ar.medi=2@-28,115+352|lam-ar.init.hah1=1+123|alef-ar=0+642", + "variations": { + "MSHQ": 10.0 } }, { + "only": "RaqqSura.ttf", "input": "بببببببب", - "expectation": { - "default": "dotbelow-ar=7@834,-111+0|behDotless-ar.fina=7+984|dotbelow-ar=6@14,-110+0|_c.seen.beh=6+0|behDotless-ar.medi.high=6+128|dotbelow-ar=5@9,-110+0|_c.seen.beh=5+0|behDotless-ar.medi=5+128|dotbelow-ar=4@14,-110+0|_c.seen.beh=4+0|behDotless-ar.medi.high=4+128|dotbelow-ar=3@9,-110+0|_c.seen.beh=3+0|behDotless-ar.medi=3+128|dotbelow-ar=2@14,-110+0|_c.seen.beh=2+0|behDotless-ar.medi.high=2+128|dotbelow-ar=1@9,-110+0|_c.seen.beh=1+0|behDotless-ar.medi=1+128|dotbelow-ar=0@81,-46+0|_c.seen.beh=0+0|behDotless-ar.init.high=0+130", - "RaqqSura.ttf": "dotbelow-ar=7@834,-111+0|behDotless-ar.fina=7+984|dotbelow-ar=6@-13,-110+0|behDotless-ar.medi.high=6+100|dotbelow-ar=5@-19,-110+0|behDotless-ar.medi=5+100|dotbelow-ar=4@-13,-110+0|behDotless-ar.medi.high=4+100|dotbelow-ar=3@-19,-110+0|behDotless-ar.medi=3+100|dotbelow-ar=2@-13,-110+0|behDotless-ar.medi.high=2+100|dotbelow-ar=1@-19,-110+0|behDotless-ar.medi=1+100|dotbelow-ar=0@51,-46+0|behDotless-ar.init.high=0+100" + "expectation": "dotbelow-ar=7@834,-111+0|behDotless-ar.fina=7+984|dotbelow-ar=6@-13,-110+0|behDotless-ar.medi.high=6+100|dotbelow-ar=5@-19,-110+0|behDotless-ar.medi=5+100|dotbelow-ar=4@-13,-110+0|behDotless-ar.medi.high=4+100|dotbelow-ar=3@-19,-110+0|behDotless-ar.medi=3+100|dotbelow-ar=2@-13,-110+0|behDotless-ar.medi.high=2+100|dotbelow-ar=1@-19,-110+0|behDotless-ar.medi=1+100|dotbelow-ar=0@51,-46+0|behDotless-ar.init.high=0+100", + "variations": { + "MSHQ": 10.0 } }, { + "only": "RaqqSura.ttf", "input": "فتستجيبو", - "expectation": { - "default": "waw-ar.fina=7+472|dotbelow-ar=6@-1,-140+0|behDotless-ar.medi=6@-10,0+118|twodotsverticalbelow-ar=5@14,-137+0|_c.seen.beh=5+0|behDotless-ar.medi.high=5+128|dotbelow-ar=4@220,-112+0|_c.hah.beh=4+7|hah-ar.medi=4+133|twodotsverticalabove-ar.beh=3@-22,424+0|behDotless-ar.medi=3@0,122+128|_c.seen.beh=2@0,122+0|seen-ar.medi.low=2@0,122+411|twodotsverticalabove-ar.beh=1@-28,473+0|_c.seen.beh=1@0,122+0|behDotless-ar.medi.med=1@0,122+128|dotabove-ar=0@-1,495+0|_c.feh.init.beh=0@0,122+174|fehDotless-ar.init=0@-114,122+220", - "RaqqSura.ttf": "waw-ar.fina=7+477|dotbelow-ar=6@-29,-140+0|behDotless-ar.medi=6@-10,0+90|twodotsverticalbelow-ar=5@-13,-137+0|behDotless-ar.medi.high=5+100|dotbelow-ar=4@213,-112+0|hah-ar.medi=4+133|twodotsverticalabove-ar.beh=3@-45,427+0|behDotless-ar.medi=3@0,122+100|seen-ar.medi=2@0,122+345|twodotsverticalabove-ar.beh=1@-45,512+0|behDotless-ar.medi.high=1@0,122+100|dotabove-ar=0@-61,495+0|fehDotless-ar.init=0@0,122+334" + "expectation": "waw-ar.fina=7+477|dotbelow-ar=6@-29,-140+0|behDotless-ar.medi=6@-10,0+90|twodotsverticalbelow-ar=5@-13,-137+0|behDotless-ar.medi.high=5+100|dotbelow-ar=4@213,-112+0|hah-ar.medi=4+133|twodotsverticalabove-ar.beh=3@-45,427+0|behDotless-ar.medi=3@0,122+100|seen-ar.medi=2@0,122+345|twodotsverticalabove-ar.beh=1@-45,512+0|behDotless-ar.medi.high=1@0,122+100|dotabove-ar=0@-61,495+0|fehDotless-ar.init=0@0,122+334", + "variations": { + "MSHQ": 10.0 } }, { + "only": "RaqqSura.ttf", "input": "يستهزءون", - "expectation": { - "default": "dotabove-ar=7@5,191+0|noonghunna-ar=7+295|waw-ar=6@400,0+909|hamza-ar.alt=5@216,-28+0|dotabove-ar.reh=4@446,85+0|reh-ar.fina=4@300,0+693|heh-ar.medi.round=3+323|twodotsverticalabove-ar.vert.beh=2@-1,347+0|_c.seen.beh=2+0|behDotless-ar.medi.med=2+128|_c.seen.beh=1+0|seen-ar.medi.low=1+411|twodotsverticalbelow-ar=0@72,-73+0|_c.seen.beh=0+0|behDotless-ar.init.med=0+130", - "RaqqSura.ttf": "dotabove-ar=7@5,191+0|noonghunna-ar=7+295|waw-ar=6+516|hamza-ar.alt=5@-190,-28+0|dotabove-ar.reh=4@40,85+0|reh-ar.fina=4@-100,0+287|heh-ar.medi.round=3+320|twodotsverticalabove-ar.vert.beh=2@-18,340+0|behDotless-ar.medi.med=2+100|seen-ar.medi=1+345|twodotsverticalbelow-ar=0@51,-73+0|behDotless-ar.init.high=0+100" + "expectation": "dotabove-ar=7@5,191+0|noonghunna-ar=7+295|waw-ar=6+516|hamza-ar.alt=5@-190,-28+0|dotabove-ar.reh=4@40,85+0|reh-ar.fina=4@-100,0+287|heh-ar.medi.round=3+320|twodotsverticalabove-ar.vert.beh=2@-18,340+0|behDotless-ar.medi.med=2+100|seen-ar.medi=1+345|twodotsverticalbelow-ar=0@51,-73+0|behDotless-ar.init.high=0+100", + "variations": { + "MSHQ": 10.0 } }, { + "only": "RaqqSura.ttf", "input": "يــــتخذ", - "expectation": { - "default": "dotabove-ar=7@426,249+0|dal-ar.fina=7+875|dotabove-ar=6@-33,220+0|_c.hah.dal=6+71|hah-ar.medi=6@-71,0+62|twodotsverticalabove-ar.beh=5@-22,424+0|behDotless-ar.medi=5@0,122+128|_c.ain.init.beh=4@0,122+95|kashida-ar=4@0,122+100|kashida-ar=3@0,122+100|kashida-ar=2@0,122+100|kashida-ar=1@0,122+100|twodotsverticalbelow-ar=0@72,49+0|behDotless-ar.init=0@0,122+130", - "RaqqSura.ttf": "dotabove-ar=7@420,249+0|dal-ar.fina=7+875|dotabove-ar=6@-33,220+0|hah-ar.medi=6+133|twodotsverticalabove-ar.beh=5@-45,427+0|behDotless-ar.medi=5@0,122+100|kashida-ar=4@0,122+100|kashida-ar=3@0,122+100|kashida-ar=2@0,122+100|kashida-ar=1@0,122+100|twodotsverticalbelow-ar=0@72,49+0|behDotless-ar.init=0@0,122+100" - } - }, - { - "input": "الاصطخري", - "features": { - "salt": true - }, - "expectation": { - "default": "twodotsverticalbelow-ar=7@259,-436+0|alefMaksura-ar.salt=7+328|reh-ar.fina=6@-25,0+368|dotabove-ar=5@-62,220+0|_c.hah.reh=5@-9,0+102|hah-ar.medi=5@-131,0+2|tah-ar.medi.hah1=4@0,7+758|sad-ar.init=3@-9,122+756|lam_alef-ar=1@400,0+942|alef-ar=0@340,0+998", - "RaqqSura.ttf": "twodotsverticalbelow-ar=7@259,-436+0|alefMaksura-ar.salt=7+328|reh-ar.fina=6@-25,0+362|dotabove-ar=5@-33,220+0|hah-ar.medi=5+133|tah-ar.medi.hah1=4@0,7+758|sad-ar.init=3@-9,122+756|lam_alef-ar=1@-32,0+510|alef-ar=0@-113,0+529" + "expectation": "dotabove-ar=7@420,249+0|dal-ar.fina=7+875|dotabove-ar=6@-33,220+0|hah-ar.medi=6+133|twodotsverticalabove-ar.beh=5@-45,427+0|behDotless-ar.medi=5@0,122+100|kashida-ar=4@0,122+100|kashida-ar=3@0,122+100|kashida-ar=2@0,122+100|kashida-ar=1@0,122+100|twodotsverticalbelow-ar=0@72,49+0|behDotless-ar.init=0@0,122+100", + "variations": { + "MSHQ": 10.0 } }, { + "only": "RaqqSura.ttf", "input": "التمنفحمد", - "expectation": { - "default": "dal-ar.fina=8+875|meem-ar.medi=7+380|_c.ain.meem=6@13,0+48|hah-ar.medi=6@-39,0+94|dotabove-ar=5@1,451+0|fehDotless-ar.medi=5@0,122+377|dotabove-ar.beh=4@8,416+0|_c.seen.beh=4@0,122+0|behDotless-ar.medi=4@0,122+128|_c.seen.beh=3@0,122+0|meem-ar.medi.round=3@0,122+425|twodotsverticalabove-ar.beh=2@-59,400+0|behDotless-ar.medi.round=2@0,122+108|_c.seen.beh=1@0,122+0|lam-ar.init.hah1=1@0,7+123|alef-ar=0@395,0+1053", - "RaqqSura.ttf": "dal-ar.fina=8+875|meem-ar.medi=7@-28,0+352|hah-ar.medi=6@-120,0+13|dotabove-ar=5@1,451+0|fehDotless-ar.medi=5@0,122+377|dotabove-ar.beh=4@-15,419+0|behDotless-ar.medi=4@0,122+100|meem-ar.medi.round=3@0,122+425|twodotsverticalabove-ar.beh=2@-41,427+0|behDotless-ar.medi.round=2@-6,122+104|lam-ar.init.hah1=1@0,7+123|alef-ar=0+642" + "expectation": "dal-ar.fina=8+875|meem-ar.medi=7@-28,0+352|hah-ar.medi=6@-120,0+13|dotabove-ar=5@1,451+0|fehDotless-ar.medi=5@0,122+377|dotabove-ar.beh=4@-15,419+0|behDotless-ar.medi=4@0,122+100|meem-ar.medi.round=3@0,122+425|twodotsverticalabove-ar.beh=2@-41,427+0|behDotless-ar.medi.round=2@-6,122+104|lam-ar.init.hah1=1@0,7+123|alef-ar=0+642", + "variations": { + "MSHQ": 10.0 } }, { + "only": "RaqqSura.ttf", "input": "ليواطـُٔو", - "expectation": { - "default": "waw-ar.fina=8+472|damma-ar=5@-65,96+0|tah-ar.init=4+765|alef-ar=3@365,0+1023|waw-ar.fina=2@280,0+752|twodotsverticalbelow-ar=1@-1,-167+0|behDotless-ar.medi=1@-10,0+118|_c.seen.beh=0+0|lam-ar.init=0+123", - "RaqqSura.ttf": "waw-ar.fina=8+477|damma-ar=5@-65,96+0|tah-ar.init=4+765|alef-ar=3@-35,0+607|waw-ar.fina=2@-120,0+357|twodotsverticalbelow-ar=1@-29,-167+0|behDotless-ar.medi=1@-10,0+90|lam-ar.init=0+123" + "expectation": "waw-ar.fina=8+477|damma-ar=5@-65,96+0|tah-ar.init=4+765|alef-ar=3@-35,0+607|waw-ar.fina=2@-120,0+357|twodotsverticalbelow-ar=1@-29,-167+0|behDotless-ar.medi=1@-10,0+90|lam-ar.init=0+123", + "variations": { + "MSHQ": 10.0 } }, { + "only": "RaqqSura.ttf", "input": "يستهزءُون", - "expectation": { - "default": "dotabove-ar=8@5,191+0|noonghunna-ar=8+295|waw-ar=7@400,0+909|hamza-ar.alt=5@216,-28+0|dotabove-ar.reh=4@446,85+0|reh-ar.fina=4@300,0+693|heh-ar.medi.round=3+323|twodotsverticalabove-ar.vert.beh=2@-1,347+0|_c.seen.beh=2+0|behDotless-ar.medi.med=2+128|_c.seen.beh=1+0|seen-ar.medi.low=1+411|twodotsverticalbelow-ar=0@72,-73+0|_c.seen.beh=0+0|behDotless-ar.init.med=0+130", - "RaqqSura.ttf": "dotabove-ar=8@5,191+0|noonghunna-ar=8+295|waw-ar=7+516|hamza-ar.alt=5@-190,-28+0|dotabove-ar.reh=4@40,85+0|reh-ar.fina=4@-100,0+287|heh-ar.medi.round=3+320|twodotsverticalabove-ar.vert.beh=2@-18,340+0|behDotless-ar.medi.med=2+100|seen-ar.medi=1+345|twodotsverticalbelow-ar=0@51,-73+0|behDotless-ar.init.high=0+100" + "expectation": "dotabove-ar=8@5,191+0|noonghunna-ar=8+295|waw-ar=7+516|hamza-ar.alt=5@-190,-28+0|dotabove-ar.reh=4@40,85+0|reh-ar.fina=4@-100,0+287|heh-ar.medi.round=3+320|twodotsverticalabove-ar.vert.beh=2@-18,340+0|behDotless-ar.medi.med=2+100|seen-ar.medi=1+345|twodotsverticalbelow-ar=0@51,-73+0|behDotless-ar.init.high=0+100", + "variations": { + "MSHQ": 10.0 } }, { + "only": "RaqqSura.ttf", "input": "قـلم", - "expectation": { - "default": "meem-ar.fina.round=3+554|lam-ar.medi.round.kashida=2@-20,0+199|kashida-ar=1+100|twodotsverticalabove-ar=0@-91,381+0|fehDotless-ar.init=0+334", - "RaqqSura.ttf": "meem-ar.fina.round=3+554|lam-ar.medi.round=2+95|kashida-ar=1+100|twodotsverticalabove-ar=0@-91,381+0|fehDotless-ar.init=0+334" + "expectation": "meem-ar.fina.round=3+554|lam-ar.medi.round=2+95|kashida-ar=1+100|twodotsverticalabove-ar=0@-91,381+0|fehDotless-ar.init=0+334", + "variations": { + "MSHQ": 10.0 } }, { + "only": "RaqqSura.ttf", "input": "قـلن", - "expectation": { - "default": "dotabove-ar=3@-3,101+0|noonghunna-ar.fina=3+250|lam-ar.medi.round.kashida=2@-20,0+199|kashida-ar=1+100|twodotsverticalabove-ar=0@-91,381+0|fehDotless-ar.init=0+334", - "RaqqSura.ttf": "dotabove-ar=3@-3,90+0|noonghunna-ar.fina=3+250|lam-ar.medi.round=2+95|kashida-ar=1+100|twodotsverticalabove-ar=0@-91,381+0|fehDotless-ar.init=0+334" + "expectation": "dotabove-ar=3@-3,90+0|noonghunna-ar.fina=3+250|lam-ar.medi.round=2+95|kashida-ar=1+100|twodotsverticalabove-ar=0@-91,381+0|fehDotless-ar.init=0+334", + "variations": { + "MSHQ": 10.0 } }, { + "only": "RaqqSura.ttf", "input": "فـبم", - "expectation": { - "default": "meem-ar.fina.round=3+554|dotbelow-ar=2@-15,-110+0|behDotless-ar.medi.round.kashida=2+178|kashida-ar=1+100|dotabove-ar=0@-61,373+0|fehDotless-ar.init=0+334", - "RaqqSura.ttf": "meem-ar.fina.round=3+554|dotbelow-ar=2@-20,-110+0|behDotless-ar.medi.round=2@-6,0+104|kashida-ar=1+100|dotabove-ar=0@-61,373+0|fehDotless-ar.init=0+334" + "expectation": "meem-ar.fina.round=3+554|dotbelow-ar=2@-20,-110+0|behDotless-ar.medi.round=2@-6,0+104|kashida-ar=1+100|dotabove-ar=0@-61,373+0|fehDotless-ar.init=0+334", + "variations": { + "MSHQ": 10.0 } }, { + "only": "RaqqSura.ttf", "input": "فـبن", - "expectation": { - "default": "dotabove-ar=3@-3,101+0|noonghunna-ar.fina=3+250|dotbelow-ar=2@-15,-110+0|behDotless-ar.medi.round.kashida=2+178|kashida-ar=1+100|dotabove-ar=0@-61,373+0|fehDotless-ar.init=0+334", - "RaqqSura.ttf": "dotabove-ar=3@-3,90+0|noonghunna-ar.fina=3+250|dotbelow-ar=2@50,-110+0|behDotless-ar.medi.round=2@-6,0+104|kashida-ar=1+100|dotabove-ar=0@-61,373+0|fehDotless-ar.init=0+334" + "expectation": "dotabove-ar=3@-3,90+0|noonghunna-ar.fina=3+250|dotbelow-ar=2@50,-110+0|behDotless-ar.medi.round=2@-6,0+104|kashida-ar=1+100|dotabove-ar=0@-61,373+0|fehDotless-ar.init=0+334", + "variations": { + "MSHQ": 10.0 } } - ] + ], + "configuration": { + "defaults": { + "script": "arab", + "direction": "rtl" + } + } } \ No newline at end of file diff --git a/tests/shaping.yaml b/tests/shaping.yaml new file mode 100644 index 0000000..59eaba4 --- /dev/null +++ b/tests/shaping.yaml @@ -0,0 +1,1387 @@ +configuration: + defaults: + script: arab + direction: rtl + +input: +- variations: + SPAC: -100 + text: + - ر ارا + - مر امرا + - حال + - قال + - حالت + - قالت + +- features: + ss01: 1 + text: + - بني + - نبي + - تخطبني + +- features: + salt: 1 + text: + - بي + - حى + - سى + - سي + - شي + - عى + - عي + - فى + - في + - كي + - لي + - يٍ + - يِ + - بسي + - بشي + - بني + - جنى + - سسي + - صسي + - طسي + - طلى + - عسي + - على + - فسي + - كسي + - لسى + - لسي + - ليً + - مسي + - ملى + - نسى + - نعى + - نفى + - هسي + - ببسي + - بسسي + - بصسي + - بطسي + - بعسي + - بفسي + - بكسي + - بلسي + - بمسي + - بهسي + - عيسى + - فلِي + - لسسي + - ممسي + - يجبي + - يحيي + - النبي + - بببسي + - بيحيي + - ببببسي + - تخطبني + - اطلططحی + - الاصطخري + +- features: + salt: 2 + text: + - بي + - حى + - سى + - سي + - شي + - عى + - عي + - فى + - في + - كي + - لي + - علي + - مني + +- direction: ltr + features: + salt: 1 + text: + - ۝٥ + +- direction: ltr + text: + - ۝٠ + - ۝١ + - ۝٢ + - ۝٣ + - ۝٤ + - ۝٥ + - ۝٦ + - ۝٧ + - ۝٨ + - ۝٩ + - ۝١٠ + - ۝١١ + - ۝١٢ + - ۝١٣ + - ۝١٤ + - ۝١٥ + - ۝١٦ + - ۝١٧ + - ۝١٨ + - ۝١٩ + - ۝٢٠ + - ۝٢١ + - ۝٢٢ + - ۝٢٣ + - ۝٢٤ + - ۝٢٥ + - ۝٢٦ + - ۝٢٧ + - ۝٢٨ + - ۝٢٩ + - ۝٣٠ + - ۝٣١ + - ۝٣٢ + - ۝٣٣ + - ۝٣٤ + - ۝٣٥ + - ۝٣٦ + - ۝٣٧ + - ۝٣٨ + - ۝٣٩ + - ۝٤٠ + - ۝٤١ + - ۝٤٢ + - ۝٤٣ + - ۝٤٤ + - ۝٤٥ + - ۝٤٦ + - ۝٤٧ + - ۝٤٨ + - ۝٤٩ + - ۝٥٠ + - ۝٥١ + - ۝٥٢ + - ۝٥٣ + - ۝٥٤ + - ۝٥٥ + - ۝٥٦ + - ۝٥٧ + - ۝٥٨ + - ۝٥٩ + - ۝٦٠ + - ۝٦١ + - ۝٦٢ + - ۝٦٣ + - ۝٦٤ + - ۝٦٥ + - ۝٦٦ + - ۝٦٧ + - ۝٦٨ + - ۝٦٩ + - ۝٧٠ + - ۝٧١ + - ۝٧٢ + - ۝٧٣ + - ۝٧٤ + - ۝٧٥ + - ۝٧٦ + - ۝٧٧ + - ۝٧٨ + - ۝٧٩ + - ۝٨٠ + - ۝٨١ + - ۝٨٢ + - ۝٨٣ + - ۝٨٤ + - ۝٨٥ + - ۝٨٦ + - ۝٨٧ + - ۝٨٨ + - ۝٨٩ + - ۝٩٠ + - ۝٩١ + - ۝٩٢ + - ۝٩٣ + - ۝٩٤ + - ۝٩٥ + - ۝٩٦ + - ۝٩٧ + - ۝٩٨ + - ۝٩٩ + - ۝١٠٠ + - ۝١٠١ + - ۝١٠٢ + - ۝١٠٣ + - ۝١٠٤ + - ۝١٠٥ + - ۝١٠٦ + - ۝١٠٧ + - ۝١٠٨ + - ۝١٠٩ + - ۝١١٠ + - ۝١١١ + - ۝١١٢ + - ۝١١٣ + - ۝١١٤ + - ۝١١٥ + - ۝١١٦ + - ۝١١٧ + - ۝١١٨ + - ۝١١٩ + - ۝١٢٠ + - ۝١٢١ + - ۝١٢٢ + - ۝١٢٣ + - ۝١٢٤ + - ۝١٢٥ + - ۝١٢٦ + - ۝١٢٧ + - ۝١٢٨ + - ۝١٢٩ + - ۝١٣٠ + - ۝١٣١ + - ۝١٣٢ + - ۝١٣٣ + - ۝١٣٤ + - ۝١٣٥ + - ۝١٣٦ + - ۝١٣٧ + - ۝١٣٨ + - ۝١٣٩ + - ۝١٤٠ + - ۝١٤١ + - ۝١٤٢ + - ۝١٤٣ + - ۝١٤٤ + - ۝١٤٥ + - ۝١٤٦ + - ۝١٤٧ + - ۝١٤٨ + - ۝١٤٩ + - ۝١٥٠ + - ۝١٥١ + - ۝١٥٢ + - ۝١٥٣ + - ۝١٥٤ + - ۝١٥٥ + - ۝١٥٦ + - ۝١٥٧ + - ۝١٥٨ + - ۝١٥٩ + - ۝١٦٠ + - ۝١٦١ + - ۝١٦٢ + - ۝١٦٣ + - ۝١٦٤ + - ۝١٦٥ + - ۝١٦٦ + - ۝١٦٧ + - ۝١٦٨ + - ۝١٦٩ + - ۝١٧٠ + - ۝١٧١ + - ۝١٧٢ + - ۝١٧٣ + - ۝١٧٤ + - ۝١٧٥ + - ۝١٧٦ + - ۝١٧٧ + - ۝١٧٨ + - ۝١٧٩ + - ۝١٨٠ + - ۝١٨١ + - ۝١٨٢ + - ۝١٨٣ + - ۝١٨٤ + - ۝١٨٥ + - ۝١٨٦ + - ۝١٨٧ + - ۝١٨٨ + - ۝١٨٩ + - ۝١٩٠ + - ۝١٩١ + - ۝١٩٢ + - ۝١٩٣ + - ۝١٩٤ + - ۝١٩٥ + - ۝١٩٦ + - ۝١٩٧ + - ۝١٩٨ + - ۝١٩٩ + - ۝٢٠٠ + - ۝٢٠١ + - ۝٢٠٢ + - ۝٢٠٣ + - ۝٢٠٤ + - ۝٢٠٥ + - ۝٢٠٦ + - ۝٢٠٧ + - ۝٢٠٨ + - ۝٢٠٩ + - ۝٢١٠ + - ۝٢١١ + - ۝٢١٢ + - ۝٢١٣ + - ۝٢١٤ + - ۝٢١٥ + - ۝٢١٦ + - ۝٢١٧ + - ۝٢١٨ + - ۝٢١٩ + - ۝٢٢٠ + - ۝٢٢١ + - ۝٢٢٢ + - ۝٢٢٣ + - ۝٢٢٤ + - ۝٢٢٥ + - ۝٢٢٦ + - ۝٢٢٧ + - ۝٢٢٨ + - ۝٢٢٩ + - ۝٢٣٠ + - ۝٢٣١ + - ۝٢٣٢ + - ۝٢٣٣ + - ۝٢٣٤ + - ۝٢٣٥ + - ۝٢٣٦ + - ۝٢٣٧ + - ۝٢٣٨ + - ۝٢٣٩ + - ۝٢٤٠ + - ۝٢٤١ + - ۝٢٤٢ + - ۝٢٤٣ + - ۝٢٤٤ + - ۝٢٤٥ + - ۝٢٤٦ + - ۝٢٤٧ + - ۝٢٤٨ + - ۝٢٤٩ + - ۝٢٥٠ + - ۝٢٥١ + - ۝٢٥٢ + - ۝٢٥٣ + - ۝٢٥٤ + - ۝٢٥٥ + - ۝٢٥٦ + - ۝٢٥٧ + - ۝٢٥٨ + - ۝٢٥٩ + - ۝٢٦٠ + - ۝٢٦١ + - ۝٢٦٢ + - ۝٢٦٣ + - ۝٢٦٤ + - ۝٢٦٥ + - ۝٢٦٦ + - ۝٢٦٧ + - ۝٢٦٨ + - ۝٢٦٩ + - ۝٢٧٠ + - ۝٢٧١ + - ۝٢٧٢ + - ۝٢٧٣ + - ۝٢٧٤ + - ۝٢٧٥ + - ۝٢٧٦ + - ۝٢٧٧ + - ۝٢٧٨ + - ۝٢٧٩ + - ۝٢٨٠ + - ۝٢٨١ + - ۝٢٨٢ + - ۝٢٨٣ + - ۝٢٨٤ + - ۝٢٨٥ + - ۝٢٨٦ + - ۝٢٨٧ + - ۝٢٨٨ + - ۝٢٨٩ + - ۝٢٩٠ + - ۝٢٩١ + - ۝٢٩٢ + - ۝٢٩٣ + - ۝٢٩٤ + - ۝٢٩٥ + - ۝٢٩٦ + - ۝٢٩٧ + - ۝٢٩٨ + - ۝٢٩٩ + - ۝٣٠٠ + - ۝100 + - ۝101 + - ۝102 + - ۝103 + - ۝104 + - ۝105 + - ۝106 + - ۝107 + - ۝108 + - ۝109 + - ۝10 + - ۝110 + - ۝111 + - ۝112 + - ۝113 + - ۝114 + - ۝115 + - ۝116 + - ۝117 + - ۝118 + - ۝119 + - ۝11 + - ۝120 + - ۝121 + - ۝122 + - ۝123 + - ۝124 + - ۝125 + - ۝126 + - ۝127 + - ۝128 + - ۝129 + - ۝12 + - ۝130 + - ۝131 + - ۝132 + - ۝133 + - ۝134 + - ۝135 + - ۝136 + - ۝137 + - ۝138 + - ۝139 + - ۝13 + - ۝140 + - ۝141 + - ۝142 + - ۝143 + - ۝144 + - ۝145 + - ۝146 + - ۝147 + - ۝148 + - ۝149 + - ۝14 + - ۝150 + - ۝151 + - ۝152 + - ۝153 + - ۝154 + - ۝155 + - ۝156 + - ۝157 + - ۝158 + - ۝159 + - ۝15 + - ۝160 + - ۝161 + - ۝162 + - ۝163 + - ۝164 + - ۝165 + - ۝166 + - ۝167 + - ۝168 + - ۝169 + - ۝16 + - ۝170 + - ۝171 + - ۝172 + - ۝173 + - ۝174 + - ۝175 + - ۝176 + - ۝177 + - ۝178 + - ۝179 + - ۝17 + - ۝180 + - ۝181 + - ۝182 + - ۝183 + - ۝184 + - ۝185 + - ۝186 + - ۝187 + - ۝188 + - ۝189 + - ۝18 + - ۝190 + - ۝191 + - ۝192 + - ۝193 + - ۝194 + - ۝195 + - ۝196 + - ۝197 + - ۝198 + - ۝199 + - ۝19 + - ۝200 + - ۝201 + - ۝202 + - ۝203 + - ۝204 + - ۝205 + - ۝206 + - ۝207 + - ۝208 + - ۝209 + - ۝20 + - ۝210 + - ۝211 + - ۝212 + - ۝213 + - ۝214 + - ۝215 + - ۝216 + - ۝217 + - ۝218 + - ۝219 + - ۝21 + - ۝220 + - ۝221 + - ۝222 + - ۝223 + - ۝224 + - ۝225 + - ۝226 + - ۝227 + - ۝228 + - ۝229 + - ۝22 + - ۝230 + - ۝231 + - ۝232 + - ۝233 + - ۝234 + - ۝235 + - ۝236 + - ۝237 + - ۝238 + - ۝239 + - ۝23 + - ۝240 + - ۝241 + - ۝242 + - ۝243 + - ۝244 + - ۝245 + - ۝246 + - ۝247 + - ۝248 + - ۝249 + - ۝24 + - ۝250 + - ۝251 + - ۝252 + - ۝253 + - ۝254 + - ۝255 + - ۝256 + - ۝257 + - ۝258 + - ۝259 + - ۝25 + - ۝260 + - ۝261 + - ۝262 + - ۝263 + - ۝264 + - ۝265 + - ۝266 + - ۝267 + - ۝268 + - ۝269 + - ۝26 + - ۝270 + - ۝271 + - ۝272 + - ۝273 + - ۝274 + - ۝275 + - ۝276 + - ۝277 + - ۝278 + - ۝279 + - ۝27 + - ۝280 + - ۝281 + - ۝282 + - ۝283 + - ۝284 + - ۝285 + - ۝286 + - ۝287 + - ۝288 + - ۝289 + - ۝28 + - ۝290 + - ۝291 + - ۝292 + - ۝293 + - ۝294 + - ۝295 + - ۝296 + - ۝297 + - ۝298 + - ۝299 + - ۝29 + - ۝300 + - ۝30 + - ۝31 + - ۝32 + - ۝33 + - ۝34 + - ۝35 + - ۝36 + - ۝37 + - ۝38 + - ۝39 + - ۝40 + - ۝41 + - ۝42 + - ۝43 + - ۝44 + - ۝45 + - ۝46 + - ۝47 + - ۝48 + - ۝49 + - ۝50 + - ۝51 + - ۝52 + - ۝53 + - ۝54 + - ۝55 + - ۝56 + - ۝57 + - ۝58 + - ۝59 + - ۝60 + - ۝61 + - ۝62 + - ۝63 + - ۝64 + - ۝65 + - ۝66 + - ۝67 + - ۝68 + - ۝69 + - ۝70 + - ۝71 + - ۝72 + - ۝73 + - ۝74 + - ۝75 + - ۝76 + - ۝77 + - ۝78 + - ۝79 + - ۝80 + - ۝81 + - ۝82 + - ۝83 + - ۝84 + - ۝85 + - ۝86 + - ۝87 + - ۝88 + - ۝89 + - ۝90 + - ۝91 + - ۝92 + - ۝93 + - ۝94 + - ۝95 + - ۝96 + - ۝97 + - ۝98 + - ۝99 + +- text: + - آ + - أ + - ؤ + - إ + - ئ + - ا + - ب + - ش + - ع + - غ + - ف + - أَ + - أُ + - ؤَ + - ؤُ + - ؤِ + - إِ + - ئم + - ئُ + - ئِ + - اء + - اَ + - اُ + - با + - بب + - بح + - بش + - بع + - بل + - به + - بي + - تا + - ثا + - جج + - جح + - حا + - حب + - حح + - حد + - حر + - حس + - حض + - حط + - حع + - حف + - حق + - حك + - حل + - حم + - حن + - حه + - حو + - حى + - حے + - دَ + - سا + - سب + - سح + - سد + - سر + - سس + - سض + - سط + - سع + - سف + - سق + - سك + - سل + - سم + - سن + - سه + - سو + - سى + - سي + - سٍ + - سِ + - سے + - شي + - صح + - صٍ + - صِ + - صے + - طح + - طً + - طَ + - طے + - عا + - عب + - عح + - عد + - عر + - عس + - عض + - عط + - عع + - عف + - عق + - عك + - عل + - عم + - عن + - عه + - عو + - عى + - عي + - عے + - ـد + - فا + - فب + - فد + - فر + - فس + - فص + - فط + - فع + - فف + - فق + - فك + - فل + - فم + - فن + - فه + - فو + - فى + - في + - فے + - قل + - كا + - كد + - كر + - كم + - كن + - كي + - كً + - كَ + - كے + - لآ + - لأ + - لح + - لم + - لي + - لً + - لٍ + - لَ + - لِ + - لے + - ما + - مح + - مر + - مم + - من + - مو + - مے + - نٍ + - نِ + - هح + - هم + - هن + - هے + - وٕ + - ىٕ + - ىے + - ◌ً + - ◌ٌ + - ◌ٍ + - ◌َ + - ◌ُ + - ◌ِ + - ◌ٓ + - ◌ٔ + - ◌ٕ + - لم تحاجون + - ئفة + - ئِم + - اطح + - الح + - الے + - ببا + - ببب + - ببن + - بسم + - بسن + - بسي + - بسٍ + - بشي + - بعا + - بعد + - بعض + - بعن + - بـد + - بـك + - بفخ + - بفن + - بكم + - بلا + - بلٍ + - بلِ + - بما + - بمح + - بمن + - بنم + - بني + - بنٍ + - بهح + - بهم + - بهن + - بهو + - بيت + - بين + - بُل + - تبع + - تتا + - تعا + - تعب + - تعل + - ثثا + - ثغر + - ججا + - جلح + - جنح + - جنى + - حال + - حبا + - حبب + - حبر + - حبه + - حبو + - حبى + - حتى + - حجج + - حسا + - حضا + - حطا + - حعا + - حكا + - حلا + - حلن + - حما + - حمم + - حها + - حهم + - حير + - حيم + - حيو + - حپر + - حپو + - سبا + - سبب + - سبه + - سسا + - سسي + - سضا + - سطا + - سعا + - سكا + - سلا + - سلن + - سما + - سمم + - سها + - سهم + - سيء + - سيا + - سيم + - شئِ + - ششش + - شيق + - صبا + - صسي + - طبا + - طحح + - طسي + - طلم + - طلى + - عبا + - عبب + - عبم + - عبه + - عسا + - عسي + - عضا + - عطا + - ععا + - ععع + - عكا + - علا + - علج + - علل + - علم + - علن + - على + - علي + - عما + - عمم + - عها + - عهم + - عيم + - غغغ + - ــد + - فبا + - فبب + - فبم + - فبه + - فتح + - فحا + - فحح + - فسا + - فسي + - فصا + - فطا + - فعا + - ففا + - فكا + - فلآ + - فلأ + - فلا + - فما + - فمم + - فمن + - فها + - فهم + - فهو + - قال + - قلم + - كسي + - كـا + - كلا + - كما + - كمم + - كًا + - لأَ + - لأُ + - لإِ + - لبا + - لحد + - لحم + - لحے + - لسا + - لسب + - لسد + - لسر + - لسس + - لسض + - لسط + - لسع + - لسف + - لسق + - لسك + - لسل + - لسم + - لسن + - لسه + - لسو + - لسى + - لسي + - لسے + - لصے + - لطم + - لطے + - لعے + - لفے + - لكے + - للے + - لما + - لمح + - لمم + - لمے + - لهے + - لىے + - ليس + - متا + - مثا + - مثل + - مسي + - ملى + - مما + - ممح + - منه + - مُل + - نسا + - نسب + - نسد + - نسر + - نسس + - نسض + - نسط + - نسع + - نسف + - نسق + - نسك + - نسل + - نسم + - نسن + - نسه + - نسو + - نسى + - نسے + - نشا + - نعا + - نعب + - نعد + - نعر + - نعس + - نعض + - نعط + - نعع + - نعف + - نعق + - نعك + - نعل + - نعم + - نعن + - نعه + - نعو + - نعى + - نعے + - نـا + - نفا + - نفب + - نفد + - نفر + - نفس + - نفض + - نفط + - نفع + - نفف + - نفق + - نفك + - نفل + - نفم + - نفن + - نفه + - نفو + - نفى + - نفے + - نقد + - ننا + - نهم + - نين + - هسي + - وسے + - وصے + - وفے + - ولح + - ىِٕ + - يعج + - يعظ + - يقظ + - يمر + - يمن + - وقح لا + - ءامن + - أضاء + - ابطح + - اطيح + - افنے + - الحا + - الحج + - الله + - انحح + - اوتے + - بببا + - ببسه + - ببسي + - بتمح + - بسبه + - بسسي + - بصبا + - بصسي + - بطبا + - بطسي + - بعبه + - بعجل + - بعسي + - بــك + - بفبه + - بفسي + - بكسي + - بكـا + - بكمم + - بلبا + - بلسي + - بللٍ + - بمسي + - بمما + - بنخل + - بنين + - بنيه + - بهبا + - بهجة + - بهسي + - بهمن + - بيبن + - بُمل + - تتتا + - تعبا + - تعبت + - تعبه + - تعلم + - تعلو + - تغنم + - ثثثا + - جججج + - جلحو + - حالت + - ريحا + - سبإٍ + - سببا + - سبيل + - سحيق + - سوءِ + - سِيء + - صــا + - طارق + - طريق + - عليم + - علِي + - عيسى + - فبيا + - فلاُ + - فلِي + - قالت + - قلنا + - كلمة + - لبشر + - لحلا + - لسبا + - لسبب + - لسبه + - لسسا + - لسسي + - لسضا + - لسطا + - لسعا + - لسكا + - لسلا + - لسلن + - لسما + - لسمم + - لسها + - لسهم + - لسيم + - لمحا + - لممح + - لمهم + - مذهل + - مفصح + - ممسي + - ممما + - منهم + - منين + - نسبا + - نسبب + - نسسا + - نسضا + - نسطا + - نسعا + - نسكا + - نسلا + - نسلن + - نسما + - نسمم + - نسها + - نسهم + - نسيم + - نعبا + - نعبب + - نعسا + - نعضا + - نعطا + - نععا + - نعكا + - نعلا + - نعلن + - نعما + - نعمم + - نعها + - نعهم + - نعيم + - نــا + - نفبا + - نفبب + - نفسا + - نفضا + - نفطا + - نفعا + - نفكا + - نفلا + - نفلن + - نفما + - نفمم + - نفها + - نفهم + - نقيم + - نننا + - هالخ + - وبخا + - ولجا + - يتخذ + - يجبي + - يحيي + - يشعر + - يلجل + - يلمح + - يمما + - يممر + - يممو + - ءَامن + - أضاءَ + - أيلمح + - اتبعو + - اططحح + - اطفيح + - البلح + - الطيح + - القصص + - الكتب + - النبي + - ايعنے + - بببسي + - بتحية + - بحححا + - بممما + - بنيهم + - بيحيي + - بيننا + - ججججا + - جنحوا + - حنيفا + - قليلا + - لحححا + - لممحا + - لنبين + - ليتخذ + - ليفجر + - مبنيه + - مجلجل + - وءامن + - يحسبن + - يلمحح + - الرحمن + - الرحيم + - السلطح + - المليح + - ببببسي + - بححححا + - بطططحة + - تحسنين + - تخطبني + - تعلمون + - تيــتم + - حاججتم + - رِزقاً + - لتحسبو + - لححححا + - لسنتهم + - مسلمون + - مَثلاً + - يلبسون + - يُضِلُ + - اطلططحی + - الحجارة + - الطبجبج + - اللبجلج + - الملتحف + - فسنيسرك + - كَلِمةٍ + - ملجـًٔا + - ٮٮسـٰها + - الاصطخري + - الحجَارة + - المتلجلج + - المســيح + - بببببببب + - فتستجيبو + - يستهزءون + - يــــتخذ + - التمنفحمد + - ليواطـُٔو + - يستهزءُون + - قـلم + - قـلن + - فـبم + - فـبن